Adjust Munge PR action to prevent comment hide/post race
@@ -15,6 +15,12 @@ env:
# https://github.com/docker-library/bashbrew/issues/10
GIT_LFS_SKIP_SMUDGE: 1
+# limit to one run at a time per pull request
+# no cancel-in-progress so that the running diff comment can finish before the next since the old diff could be helpful for review
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: false
+
jobs:
gather:
@@ -13,7 +13,7 @@ env:
# cancel existing runs if user makes another push
concurrency:
- group: ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions: