From 3a9adf671657430ebbc41bff8387523c0af5bfed Mon Sep 17 00:00:00 2001 From: Luca Comellini Date: Wed, 6 Oct 2021 13:42:19 -0700 Subject: [PATCH] Use action to automatically rebase with master --- .github/workflows/autoupdate-pr.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/autoupdate-pr.yml b/.github/workflows/autoupdate-pr.yml index 9d9a921afa..457101c35f 100644 --- a/.github/workflows/autoupdate-pr.yml +++ b/.github/workflows/autoupdate-pr.yml @@ -13,8 +13,9 @@ jobs: runs-on: ubuntu-20.04 if: ${{ github.event.workflow_run.conclusion == 'success' }} steps: - - uses: docker://chinthakagodawita/autoupdate-action:v1 - env: - GITHUB_TOKEN: "${{ secrets.NGINX_PAT }}" - PR_READY_STATE: "ready_for_review" - EXCLUDED_LABELS: "dependencies,no-autoupdate" + - uses: peter-evans/rebase@v1 + with: + token: ${{ secrets.NGINX_PAT }} + exclude-labels: | + no-autoupdate + dependencies