Skip to content

Commit

Permalink
Weekly test-run on edge-testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
JanneKiiskila committed Jul 11, 2024
1 parent ec39768 commit 4f17edb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/edge-testnet-snap.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 4f17edb

Please sign in to comment.