Skip to content

Commit

Permalink
Create action to auto update a PR when destination branch is pushed (#…
Browse files Browse the repository at this point in the history
…3007)

Co-authored-by: Francisco Diaz <[email protected]>
  • Loading branch information
gutiory and franciscodr authored Mar 30, 2023
1 parent d3f8ee1 commit e9031f9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/auto-update-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: auto-update-pr
on:
push: {}
jobs:
autoupdate:
name: Auto update PR
runs-on: ubuntu-latest
steps:
- uses: docker://chinthakagodawita/autoupdate-action:v1
env:
GITHUB_TOKEN: "${{ secrets.TOKEN_GITHUB_ACTION }}"
PR_FILTER: "ready_for_review"
EXCLUDED_LABELS: "Skip Auto Update PRs"
MERGE_MSG: "Branch was auto-updated."

0 comments on commit e9031f9

Please sign in to comment.