Skip to content

Commit 05127fe

Browse files
committed
Fixed broken smoke tests
1 parent 025fbc3 commit 05127fe

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/smoke.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
env:
1616
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
SMOKE_TEST_OWNER: gmazzo
17+
SMOKE_TEST_REPO: gmazzo/dependabot-smoke-tests
1818
SMOKE_TEST_BRANCH: gradle-wrapper-support
1919
jobs:
2020
discover:
@@ -45,7 +45,7 @@ jobs:
4545
cat filtered.json
4646
4747
# Curl the smoke-test tests directory to get a list of tests to run
48-
URL=https://api.github.com/repos/${{ env.SMOKE_TEST_OWNER }}/smoke-tests/contents/tests?ref=${{ env.SMOKE_TEST_BRANCH }}
48+
URL=https://api.github.com/repos/${{ env.SMOKE_TEST_REPO }}/contents/tests?ref=${{ env.SMOKE_TEST_BRANCH }}
4949
curl $URL > tests.json
5050
5151
# Select the names that match smoke-$test*.yaml, where $test is the .text value from filtered.json
@@ -85,7 +85,7 @@ jobs:
8585
- name: Download test
8686
if: steps.cache-smoke-test.outputs.cache-hit != 'true'
8787
run: |
88-
URL=https://api.github.com/repos/${{ env.SMOKE_TEST_OWNER }}/smoke-tests/contents/tests/${{ matrix.suite.name }}?ref=${{ env.SMOKE_TEST_BRANCH }}
88+
URL=https://api.github.com/repos/${{ env.SMOKE_TEST_REPO }}/contents/tests/${{ matrix.suite.name }}?ref=${{ env.SMOKE_TEST_BRANCH }}
8989
curl $(gh api $URL --jq .download_url) -o smoke.yaml
9090
9191
- name: Cache Smoke Test

0 commit comments

Comments
 (0)