Skip to content

Commit 747f424

Browse files
committed
fix(workflows): update concurrency group name for manifest updates
Signed-off-by: Adilhusain Shaikh <[email protected]>
1 parent e8a1bf4 commit 747f424

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/release-latest-python-tag.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ jobs:
7474

7575
update-manifests:
7676
needs: release-asset
77-
if: needs.release-asset.result == 'success'
77+
if: always()
7878
runs-on: ubuntu-latest
7979
permissions:
8080
contents: write
8181
actions: read
8282
concurrency:
83-
group: manifest-janitor-${{ github.ref }}
83+
group: manifests-${{ github.ref }}
8484
cancel-in-progress: false
8585
steps:
8686
- name: Checkout repository
@@ -94,6 +94,7 @@ jobs:
9494
path: manifest-parts
9595
pattern: manifest-part-*
9696
merge-multiple: true
97+
allow-missing-artifacts: true
9798

9899
- name: Set up Python
99100
uses: actions/setup-python@v5

.github/workflows/release-matching-python-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
contents: write
110110
actions: read
111111
concurrency:
112-
group: manifest-janitor-${{ github.ref }}
112+
group: manifests-${{ github.ref }}
113113
cancel-in-progress: false
114114
steps:
115115
- name: Checkout repository

0 commit comments

Comments
 (0)