mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
21 lines
561 B
YAML
21 lines
561 B
YAML
name: Update pull request branches
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '30 11 * * *'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }}
|
|
|
|
jobs:
|
|
update-pr-branches:
|
|
name: Update pull request branches
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: chinthakagodawita/autoupdate@0707656cd062a3b0cf8fa9b2cda1d1404d74437e
|
|
env:
|
|
GITHUB_TOKEN: '${{ secrets.GH_PAT }}'
|
|
MERGE_CONFLICT_ACTION: 'ignore'
|
|
continue-on-error: true
|