We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dba162 commit b35b3beCopy full SHA for b35b3be
.github/workflows/integration_test.yaml
@@ -2,6 +2,9 @@ name: integration-tests
2
3
on:
4
pull_request:
5
+ schedule:
6
+ # Trigger at 6:00 AM and 6:00 PM UTC
7
+ - cron: "0 6,18 * * *"
8
9
concurrency:
10
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -49,7 +52,7 @@ jobs:
49
52
self-hosted-runner: true
50
53
self-hosted-runner-label: stg-private-endpoint
51
54
allure-report:
- if: always() && !cancelled()
55
+ if: ${{ (success() || failure()) && github.event_name == 'schedule' }}
56
needs:
57
- integration-tests
58
- openstack-interface-tests-private-endpoint
0 commit comments