Run Konveyor release-0.3 nightly tests #395
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Konveyor release-0.3 nightly tests | |
on: | |
schedule: | |
- cron: "13 4 * * *" | |
workflow_dispatch: | |
jobs: | |
release-0_3-nightly: | |
uses: ./.github/workflows/global-ci.yml | |
with: | |
tag: release-0.3 | |
operator_tag: v0.3.2 | |
api_tests_ref: release-0.3 | |
run_api_tests: true | |
# TODO: this needs to be pinned to a release-0.3 specific branch | |
ui_tests_ref: main | |
# Disabled while we wait for stability | |
run_ui_tests: false | |
report_failure: | |
needs: release-0_3-nightly | |
if: ${{ always() && contains(needs.*.result, 'failure') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Send failure data to Slack workflow | |
id: slack | |
uses: slackapi/slack-github-action@v1.26.0 | |
with: | |
payload: | | |
{ | |
"test": "E2E API", | |
"branch": "release-0.3", | |
"note": "Failed run: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |