2022-12-09 05:37:13 +00:00
|
|
|
name: PR Needs Rebase
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-08 06:12:57 +00:00
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 08:42:23 +00:00
|
|
|
- 'renovate/**'
|
2023-03-08 18:26:25 +00:00
|
|
|
- 'l10n_main'
|
2022-12-09 05:37:13 +00:00
|
|
|
pull_request_target:
|
2023-03-08 06:12:57 +00:00
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 08:42:23 +00:00
|
|
|
- 'renovate/**'
|
2023-03-08 18:26:25 +00:00
|
|
|
- 'l10n_main'
|
2022-12-09 05:37:13 +00:00
|
|
|
types: [synchronize]
|
|
|
|
|
2023-02-20 10:02:06 +00:00
|
|
|
permissions:
|
|
|
|
pull-requests: write
|
|
|
|
|
2022-12-09 05:37:13 +00:00
|
|
|
jobs:
|
|
|
|
label-rebase-needed:
|
|
|
|
runs-on: ubuntu-latest
|
2023-02-18 03:25:31 +00:00
|
|
|
|
|
|
|
concurrency:
|
2023-02-18 05:56:16 +00:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2023-02-18 03:25:31 +00:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-12-09 05:37:13 +00:00
|
|
|
steps:
|
|
|
|
- name: Check for merge conflicts
|
|
|
|
uses: eps1lon/actions-label-merge-conflict@releases/2.x
|
|
|
|
with:
|
|
|
|
dirtyLabel: 'rebase needed :construction:'
|
|
|
|
repoToken: '${{ secrets.GITHUB_TOKEN }}'
|
2023-02-20 10:02:06 +00:00
|
|
|
commentOnClean: This pull request has resolved merge conflicts and is ready for review.
|
2022-12-09 05:37:13 +00:00
|
|
|
commentOnDirty: This pull request has merge conflicts that must be resolved before it can be merged.
|
2023-02-20 10:02:06 +00:00
|
|
|
retryMax: 10
|
|
|
|
continueOnMissingPermissions: false
|