Skip to content

Commit 9967dc3

Browse files
Allow concurrent PR docs builds
Allow pull requests to run the github-pages workflow simultaneously, as deployments won't actually happen so they do not need to be protected from concurrency deployments.
1 parent ba1d99e commit 9967dc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
concurrency:
18-
group: ${{ github.workflow }}
18+
group: ${{ github.event_name == 'pull_request' && github.event.ref || github.workflow }}
1919
cancel-in-progress: false
2020

2121
permissions:

0 commit comments

Comments
 (0)