Skip to content

Add automatic pr update workflow #814

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Jun 4, 2025
19 changes: 19 additions & 0 deletions .github/workflows/pr-auto-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: pr-auto-update
on:
push: {}

jobs:
pr-auto-update:
name: Automatic PR Updater
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: CSSUoB/[email protected]
env:
GITHUB_TOKEN: '${{ secrets.PR_AUTO_UPDATE_TOKEN }}'
PR_FILTER: 'labelled'
PR_LABELS: 'sync'
MERGE_CONFLICT_ACTION: 'label'
MERGE_CONFLICT_LABEL: 'conflict'
Loading