diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-17 22:25:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 04:25:31 +0100 |
commit | e4f37fad98778b95738a771f720ca0b0eeb6cee8 (patch) | |
tree | 1c8d7111d7daf5729fc48047024c35f299be02be | |
parent | a7db0b41cdb2e7ab50e638ec546b2c5dd2d633c7 (diff) |
Only run latest for PR Rebase job (#23688)
-rw-r--r-- | .github/workflows/rebase-needed.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/rebase-needed.yml b/.github/workflows/rebase-needed.yml index 6f903ee61..553f6c329 100644 --- a/.github/workflows/rebase-needed.yml +++ b/.github/workflows/rebase-needed.yml @@ -8,6 +8,11 @@ on: jobs: label-rebase-needed: runs-on: ubuntu-latest + + concurrency: + group: ${{ github.ref }} + cancel-in-progress: true + steps: - name: Check for merge conflicts uses: eps1lon/actions-label-merge-conflict@releases/2.x |