generated from konveyor/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 12
36 lines (34 loc) · 1.04 KB
/
nightly-release-0.5.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Run Konveyor release-0.5 nightly tests
on:
schedule:
- cron: "35 4 * * *"
workflow_dispatch:
jobs:
release-0_5-nightly:
uses: ./.github/workflows/global-ci.yml
with:
tag: release-0.5
operator_tag: v0.5.1
api_tests_ref: release-0.5
run_api_tests: true
# TODO: this needs to be pinned to a release-0.5 specific branch
ui_tests_ref: main
# Disabled while we wait for stability
run_ui_tests: false
report_failure:
needs: release-0_5-nightly
if: ${{ always() && contains(needs.*.result, 'failure') }}
runs-on: ubuntu-latest
steps:
- name: Send failure data to Slack workflow
id: slack
uses: slackapi/[email protected]
with:
payload: |
{
"test": "E2E API",
"branch": "release-0.5",
"note": "Failed run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}