Adds concurrency limit to workflow run (#50034)

Co-authored-by: Jon Lane <jon.lane@automattic.com>
This commit is contained in:
Jonathan Lane 2024-07-29 06:25:26 -07:00 committed by GitHub
parent 07a71106dc
commit 31c4ae8431
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 60 additions and 52 deletions

View File

@ -5,6 +5,10 @@ on:
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
add-testing-instructions-review-comment:
runs-on: ubuntu-20.04

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
Updated the workflow prompting for testing instructions to only run once (preventing double comments)