Skip to content

Commit d4f64b9

Browse files
committed
ci: simplify docs workflow concurrency groups
- Replaces complex concurrency groups with simple 'docs' group - Updates tag pattern in stable workflow to be more specific
1 parent 803a499 commit d4f64b9

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

template/.github/workflows/docs-dev.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ jobs:
1717
pages: write
1818
runs-on: ubuntu-latest
1919
concurrency:
20-
group: ${{ github.workflow }}-${{ github.ref }}-docs
21-
cancel-in-progress: true
20+
group: docs
2221
steps:
2322
- id: auth
2423
name: Auth App

template/.github/workflows/docs-stable.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Docs (stable)
66
on:
77
push:
88
tags:
9-
- v*
9+
- v[0-9]*
1010
release:
1111
types:
1212
- published
@@ -21,8 +21,7 @@ jobs:
2121
if: startsWith(github.ref, 'refs/tags/v')
2222
runs-on: ubuntu-latest
2323
concurrency:
24-
group: ${{ github.workflow }}-${{ github.ref }}-docs
25-
cancel-in-progress: true
24+
group: docs
2625
steps:
2726
- id: auth
2827
name: Auth App

0 commit comments

Comments
 (0)