diff --git a/.github/labels.yml b/.github/labels.yml index 91e6959245..b61a945ba4 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -28,9 +28,6 @@ - color: c5def5 description: Gathering information name: in_review -- color: fbca04 - description: Don't auto-update PR - name: no-autoupdate - color: db754c description: An issue that proposes a feature request name: proposal diff --git a/.github/workflows/autoupdate-pr.yml b/.github/workflows/autoupdate-pr.yml deleted file mode 100644 index 18a27b9955..0000000000 --- a/.github/workflows/autoupdate-pr.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Auto-update -on: - workflow_run: - branches: master - workflows: - - "Continuous Integration" - types: - - completed - -jobs: - autoupdate: - name: Auto-update PRs - runs-on: ubuntu-20.04 - if: ${{ github.event.workflow_run.conclusion == 'success' }} - steps: - - uses: peter-evans/rebase@v1 - with: - token: ${{ secrets.NGINX_PAT }} - exclude-labels: | - no-autoupdate - dependencies - exclude-drafts: true