From 4af0bbe2a05bbaf9b26c6456d5ab3ea920a44033 Mon Sep 17 00:00:00 2001 From: e11sy <130844513+e11sy@users.noreply.github.com> Date: Sat, 14 Sep 2024 17:17:50 +0300 Subject: [PATCH] remove unused workflows --- .github/workflows/pr-to-prod.yml | 24 --------------------- .github/workflows/update-monorepository.yml | 18 ---------------- 2 files changed, 42 deletions(-) delete mode 100644 .github/workflows/pr-to-prod.yml delete mode 100644 .github/workflows/update-monorepository.yml 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 }}"}'