Skip to content

Commit

Permalink
Allow concurrent PR docs builds
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
martincostello committed Nov 14, 2023
1 parent ba1d99e commit 9967dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

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

permissions:
Expand Down

0 comments on commit 9967dc3

Please sign in to comment.