Skip to content

Commit 0994481

Browse files
authored
Merge pull request #850 from e0404/devops/pr-test-results-for-forks
Fix Missing Token in Devops Pipeline
2 parents 67c0405 + 7fa8a31 commit 0994481

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/test-results.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,27 +22,31 @@ jobs:
2222
run-id: ${{ github.event.workflow_run.id }}
2323
name: test-results-matlab-R2022b
2424
path: test-results/matlab-R2022b
25+
github-token: ${{ secrets.GITHUB_TOKEN }}
2526

2627
- name: Download Results for Matlab Latest
2728
uses: actions/download-artifact@v4
2829
with:
2930
run-id: ${{ github.event.workflow_run.id }}
3031
name: test-results-matlab-latest
3132
path: test-results/matlab-latest
33+
github-token: ${{ secrets.GITHUB_TOKEN }}
3234

3335
- name: Download Results for Octave
3436
uses: actions/download-artifact@v4
3537
with:
3638
run-id: ${{ github.event.workflow_run.id }}
3739
name: test-results-octave
3840
path: test-results/octave
41+
github-token: ${{ secrets.GITHUB_TOKEN }}
3942

4043
- name: Download Event File
4144
uses: actions/download-artifact@v4
4245
with:
4346
run-id: ${{ github.event.workflow_run.id }}
4447
name: event-file
4548
path: event-file
49+
github-token: ${{ secrets.GITHUB_TOKEN }}
4650

4751
- name: Publish Test Results
4852
uses: EnricoMi/publish-unit-test-result-action@v2

0 commit comments

Comments
 (0)