We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f1b96 commit a89a16cCopy full SHA for a89a16c
1 file changed
.github/workflows/integration_test.yaml
@@ -2,10 +2,13 @@ name: Integration tests
2
3
on:
4
pull_request:
5
+ schedule:
6
+ - cron: "0 15 * * SAT"
7
8
jobs:
9
integration-tests:
- uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@main
10
+ uses:
11
+ canonical/operator-workflows/.github/workflows/integration_test.yaml@main
12
secrets: inherit
13
with:
14
juju-channel: 3.6/stable
@@ -17,6 +20,6 @@ jobs:
17
20
self-hosted-runner-label: "edge"
18
21
modules: '["test_charm", "test_proxy"]'
19
22
allure-report:
- if: always() && !cancelled()
23
+ if: ${{ !cancelled() && github.event_name == 'schedule' }}
24
needs: integration-tests
25
uses: canonical/operator-workflows/.github/workflows/allure_report.yaml@main
0 commit comments