Skip to content

Commit 45d64e3

Browse files
committed
fix gha dependency chain
1 parent ec11d31 commit 45d64e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/check-devedition.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Check new devedition version
22

33
on:
44
schedule:
5-
- cron: "46 * * * *"
5+
- cron: "56 * * * *"
66
env:
77
LATEST: ""
88
permissions:
@@ -30,17 +30,17 @@ jobs:
3030
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
3131
echo mac=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
3232
Run-Win-Smoke:
33-
needs: Check-Beta-Version
34-
if: ${{ needs.Check-Beta-Version.outputs.win_reportable == 'True' }}
33+
needs: Check-DevEdition-Version
34+
if: ${{ needs.Check-DevEdition-Version.outputs.win_reportable == 'True' }}
3535
uses: ./.github/workflows/smoke.yml
3636
with:
3737
channel: "devedition"
3838
job_to_run: Smoke-Windows
3939
secrets: inherit
4040

4141
Run-Mac-Smoke:
42-
needs: Check-Beta-Version
43-
if: ${{ needs.Check-Beta-Version.outputs.mac_reportable == 'True' }}
42+
needs: Check-DevEdition-Version
43+
if: ${{ needs.Check-DevEdition-Version.outputs.mac_reportable == 'True' }}
4444
uses: ./.github/workflows/smoke.yml
4545
with:
4646
channel: "devedition"

0 commit comments

Comments
 (0)