diff --git a/.github/workflows/pr-to-prod.yml b/.github/workflows/pr-to-prod.yml deleted file mode 100644 index 7075291..0000000 --- a/.github/workflows/pr-to-prod.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: PR with update prod from master/main branch - -on: - pull_request: - branches: - - master - - main - types: [closed] - -jobs: - update-from-master: - if: github.event.pull_request.merged == true - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Create Pull Request - uses: repo-sync/pull-request@v2 - with: - destination_branch: "prod" - github_token: ${{ secrets.GITHUB_TOKEN }} - pr_title: "Update prod" - pr_body: | - Auto-generated prod update suggestion diff --git a/.github/workflows/update-monorepository.yml b/.github/workflows/update-monorepository.yml deleted file mode 100644 index 7ab6a74..0000000 --- a/.github/workflows/update-monorepository.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Update mono repository -on: - push: - branches: - - master -env: - REPOSITORY_MONO_PATH: yard -jobs: - build: - runs-on: ubuntu-20.04 - steps: - - name: Mono repository update - uses: peter-evans/repository-dispatch@v1 - with: - token: ${{ secrets.HAWK_MONO_TOKEN }} - event-type: submodule-changed - repository: codex-team/hawk.mono - client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "path": "${{ env.REPOSITORY_MONO_PATH }}"}'