From 2162a76b9cc23e30dc38e03c46404566846d43c4 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Fri, 5 Jan 2024 14:15:28 -0300 Subject: [PATCH] added update-pr-branch action --- .github/workflows/update-pr-branch.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/update-pr-branch.yml diff --git a/.github/workflows/update-pr-branch.yml b/.github/workflows/update-pr-branch.yml new file mode 100644 index 0000000..00d5c7b --- /dev/null +++ b/.github/workflows/update-pr-branch.yml @@ -0,0 +1,19 @@ +name: PR update + +on: + push: + branches: + - 'master' +jobs: + autoupdate: + runs-on: ubuntu-latest + steps: + - name: Automatically update PR + uses: adRise/update-pr-branch@v0.7.0 + with: + token: ${{ secrets.GITHUB_TOKEN }} + base: 'master' + require_passed_checks: false + sort: 'created' + direction: 'desc' + require_auto_merge_enabled: false