From 2adbfc920d39f4125558eee597568ca242a87eac Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Mon, 28 Jun 2021 07:01:30 -0700 Subject: [PATCH] integration vm tests: run on every commit to main (#2159) This is an experiment to see how often this test would fail if we run it on every commit. This depends on #2145 to fix a flaky part of the test. Signed-off-by: Christine Dodrill --- .github/workflows/xe-experimental-vm-test.yml | 23 ++++++++++++++----- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/.github/workflows/xe-experimental-vm-test.yml b/.github/workflows/xe-experimental-vm-test.yml index 7d2857310..3813fd500 100644 --- a/.github/workflows/xe-experimental-vm-test.yml +++ b/.github/workflows/xe-experimental-vm-test.yml @@ -3,14 +3,11 @@ name: "integration-vms" on: # # NOTE(Xe): uncomment this region when testing the test # pull_request: - # branches: - # - 'main' + # branches: [ main ] + push: + branches: [ main ] release: types: [ created ] - schedule: - # At minute 0 past hour 6 and 18 - # https://crontab.guru/#00_6,18_*_*_* - - cron: '00 6,18 * * *' jobs: experimental-linux-vm-test: @@ -34,3 +31,17 @@ jobs: TMPDIR: "/tmp" XDG_CACHE_HOME: "/var/lib/ghrunner/cache" + - uses: k0kubun/action-slack@v2.0.0 + with: + payload: | + { + "attachments": [{ + "text": "${{ job.status }}: ${{ github.workflow }} " + + "() " + + "of ${{ github.repository }}@" + "${{ github.ref }}".split('/').reverse()[0] + " by ${{ github.event.head_commit.committer.name }}", + "color": "danger" + }] + } + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + if: failure() && github.event_name == 'push'