Skip to content

Commit f5c8353

Browse files
authored
Merge pull request #528 from per1234/sync-labels-dotrepo-compatibility
Use explicit filename source in config file artifact upload step of "Sync Labels" workflows
2 parents f050a6e + 9e52e3a commit f5c8353

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/sync-labels-npm.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ jobs:
8585
- name: Pass configuration files to next job via workflow artifact
8686
uses: actions/upload-artifact@v4
8787
with:
88-
path: |
89-
*.yaml
90-
*.yml
88+
path: ${{ matrix.filename }}
9189
if-no-files-found: error
9290
name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }}
9391

workflow-templates/sync-labels-npm.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ jobs:
8585
- name: Pass configuration files to next job via workflow artifact
8686
uses: actions/upload-artifact@v4
8787
with:
88-
path: |
89-
*.yaml
90-
*.yml
88+
path: ${{ matrix.filename }}
9189
if-no-files-found: error
9290
name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }}
9391

workflow-templates/sync-labels.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ jobs:
7575
- name: Pass configuration files to next job via workflow artifact
7676
uses: actions/upload-artifact@v4
7777
with:
78-
path: |
79-
*.yaml
80-
*.yml
78+
path: ${{ matrix.filename }}
8179
if-no-files-found: error
8280
name: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}${{ matrix.filename }}
8381

0 commit comments

Comments
 (0)