Skip to content

dhis2: nightly

dhis2: nightly #54

Workflow file for this run

name: 'dhis2: nightly'
# This workflow runs the e2e tests on the default branch against dev at 4:20am M-F
on:
# schedule:
# - cron: '20 4 * * 1-5'
workflow_dispatch:
concurrency:
group: ${{ github.workflow}}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
call-workflow-e2e-dev:
if: github.ref == 'refs/heads/dev'
uses: dhis2/workflows/.github/workflows/analytics-e2e-tests-dev.yml@master
secrets:
username: ${{ secrets.CYPRESS_DHIS2_USERNAME }}
password: ${{ secrets.CYPRESS_DHIS2_PASSWORD }}
recordkey: ${{ secrets.CYPRESS_RECORD_KEY }}
send-slack-message:
runs-on: ubuntu-latest
needs: call-workflow-e2e-dev
if: |
failure() &&
!cancelled()
steps:
- name: Send failure message to analytics-internal-kfmt slack channel
id: slack
uses: slackapi/[email protected]
with:
channel-id: ${{ secrets.SLACK_CHANNEL_ID }}
slack-message: ':maps-app: Maps-app e2e nightly run <https://cloud.cypress.io/projects/r5jduj/runs?branches=[{"label":"dev","suggested":false,"value":"dev"}]|failed>'
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}