You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
588 B

  1. name: PR Needs Rebase
  2. on:
  3. push:
  4. pull_request_target:
  5. types: [synchronize]
  6. jobs:
  7. label-rebase-needed:
  8. runs-on: ubuntu-latest
  9. concurrency:
  10. group: ${{ github.workflow }}-${{ github.ref }}
  11. cancel-in-progress: true
  12. steps:
  13. - name: Check for merge conflicts
  14. uses: eps1lon/actions-label-merge-conflict@releases/2.x
  15. with:
  16. dirtyLabel: 'rebase needed :construction:'
  17. repoToken: '${{ secrets.GITHUB_TOKEN }}'
  18. commentOnDirty: This pull request has merge conflicts that must be resolved before it can be merged.