diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml deleted file mode 100644 index b4b2797a..00000000 --- a/.github/workflows/backport.yaml +++ /dev/null @@ -1,57 +0,0 @@ -name: 'Backport Fixes' - -on: - pull_request: - types: - - opened - - ready_for_review - - reopened - - synchronize - - labeled - - unlabeled - branches: - - 'release/*' - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -jobs: - backport: - name: Backport - runs-on: ubuntu-latest - steps: - - name: Sudo GitHub Token - id: sudo_github_token - uses: tibdex/github-app-token@v1.8.2 - with: - app_id: ${{vars.SUDO_GHA_APP_ID}} - installation_id: ${{vars.SUDO_GHA_APP_INSTALLATION_ID}} - private_key: ${{secrets.SUDO_GHA_APP_PRIVATE_KEY}} - - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - filter: blob:none - show-progress: false - - - uses: actions/checkout@v4 - with: - ref: master - sparse-checkout: | - 2-pr-backport - path: .actions - repository: Scalr/actions - token: ${{steps.sudo_github_token.outputs.token}} - - - name: Backport - uses: ./.actions/2-pr-backport - with: - approval_bot_token: ${{secrets.SCALR_BUILDBOT_TOKEN}} - token: ${{steps.sudo_github_token.outputs.token}} - branches_ordering_rule: >- - release/*.*.* - master - base_branch: ${{github.event.pull_request.base.ref}} - head_branch: ${{github.event.pull_request.head.ref}}