From 4f17edb6de02d0b35234036d972553240be3d6f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20Kiiskil=C3=A4?= Date: Fri, 12 Jul 2024 02:15:06 +0300 Subject: [PATCH] Weekly test-run on edge-testnet --- .github/workflows/edge-testnet-snap.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/edge-testnet-snap.yml diff --git a/.github/workflows/edge-testnet-snap.yml b/.github/workflows/edge-testnet-snap.yml new file mode 100644 index 0000000..9381195 --- /dev/null +++ b/.github/workflows/edge-testnet-snap.yml @@ -0,0 +1,27 @@ +name: PR-check +run-name: ${{ github.actor }} edge-testnet-w-snap + push: + path: .github/workflows/edge-testnet-snap.yml + workflow_dispatch: + schedule: + - cron: '06 6 Sun * *' + +# This allows a subsequently queued workflow run to interrupt previous runs +concurrency: + group: edge-testnet-weekly-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true +jobs: + edge-testnet-weekly: + runs-on: [ "self-hosted" ] + env: + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} + steps: + - uses: actions/checkout@v4 + - name: Run edge-testnet + run: SNAP=snap fw-tools/edge-testnet + - name: Post status to Slack test-infra channel + if: always() + uses: act10ns/slack@v2 + with: + status: ${{ job.status }} + channel: '#test-infra' \ No newline at end of file