Skip to content

Commit e4c36ca

Browse files
committed
Fix
1 parent 8c82177 commit e4c36ca

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,11 @@ jobs:
247247
commit-sha: ${{ steps.fetch-workflow-metadata.outputs.commit-sha }}
248248
run-id: ${{ steps.fetch-workflow-metadata.outputs.run-id }}
249249
steps:
250+
# @TODO move actions to a dedicated repo and remove the checkout
251+
- uses: actions/checkout@v4
252+
with:
253+
path: custom-action-repo
254+
250255
- uses: ./custom-action-repo/.github/actions/reports-group/attach-check-run-to-triggering-workflow-action
251256
with:
252257
github-token: ${{ github.token }}

.github/workflows/coverage-upload.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ jobs:
1515
commit-sha: ${{ steps.fetch-workflow-metadata.outputs.commit-sha }}
1616
run-id: ${{ steps.fetch-workflow-metadata.outputs.run-id }}
1717
steps:
18+
# @TODO move actions to a dedicated repo and remove the checkout
19+
- uses: actions/checkout@v4
20+
with:
21+
path: custom-action-repo
22+
1823
- uses: ./custom-action-repo/.github/actions/reports-group/attach-check-run-to-triggering-workflow-action
1924
with:
2025
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)