Skip to content

Commit c63a93d

Browse files
committed
fix: checkout repo in order to use gh cli.
1 parent 55b5430 commit c63a93d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/test-exclude.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
needs: [test]
3535
timeout-minutes: 5 # Timeout for test release workflow to run
3636
steps:
37+
- uses: actions/checkout@v4
38+
3739
- run: |
3840
# Wait until a release workflow whose tag is tied to this PR's SHA is running
3941
while [[ $(gh run list -w "Test Release" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do

.github/workflows/test-include.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ jobs:
3232
needs: [test]
3333
timeout-minutes: 5 # Timeout for test release workflow to run
3434
steps:
35+
- uses: actions/checkout@v4
36+
3537
- run: |
3638
# Wait until a release workflow whose tag is tied to this PR's SHA is running
3739
while [[ $(gh run list -w "Test Release" --json databaseId -q 'length' -s completed -c ${{ github.sha }}) -eq 0 ]]; do

0 commit comments

Comments
 (0)