Skip to content

Commit af076d2

Browse files
VIA-474 AS Update cron value for scheduled assurance workflow
1 parent 9119ef9 commit af076d2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/cicd-1-pull-request.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,5 @@ jobs:
122122
uses: ./.github/workflows/stage-5-acceptance.yaml
123123
with:
124124
environment: "dev"
125-
checkout_ref: ${{ github.ref }}
125+
checkout_ref: "main"
126126
secrets: inherit

.github/workflows/cicd-9-scheduled.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ name: "CI/CD scheduled assurances"
22

33
on:
44
schedule:
5-
- cron: '13 50 * * *' # Runs at 15:20 UTC every day (TODO: update time to 6am UTC)
5+
- cron: '0 14 * * *' # Runs at 14:00 UTC every day (TODO: update time to 6am UTC)
66

77
jobs:
88
acceptance-stage-dev: # Recommended maximum execution time is 10 minutes
99
name: "Acceptance stage dev"
10-
if: github.ref == 'refs/heads/main'
1110
uses: ./.github/workflows/stage-5-acceptance.yaml
1211
with:
1312
environment: "dev"
14-
checkout_ref: ${{ github.ref }}
13+
checkout_ref: main
1514
cross_browser: true
1615
secrets: inherit
1716

0 commit comments

Comments
 (0)