Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ jobs:
if: always()
permissions:
contents: write
# Serialise every gh-pages writer (this job + e2e.yml) — they race on the
# same branch and the loser fails with non-fast-forward.
concurrency:
group: gh-pages-allure
cancel-in-progress: false
steps:
- uses: actions/checkout@v4

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: write
# Serialise every gh-pages writer (this job + ci.yml's Allure Report) —
# they race on the same branch and the loser fails with non-fast-forward.
concurrency:
group: gh-pages-allure
cancel-in-progress: false
steps:
- uses: actions/checkout@v4

Expand Down
Loading