-
Notifications
You must be signed in to change notification settings - Fork 9
43 lines (38 loc) · 1.29 KB
/
nightly.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Daily compatibility check against latest polkadot
on:
workflow_dispatch:
inputs:
gitlab_pipeline:
description: 'Link to failed pipeline'
required: true
gitlab_test_job_status:
description: 'GitLab test job status'
required: true
jobs:
announce-status:
runs-on: ubuntu-latest
steps:
- name: Announce a status
run: echo ${{ inputs.gitlab_test_job_status }}
create-an-issue:
if: ${{ inputs.gitlab_test_job_status == 'failed' }}
runs-on: ubuntu-latest
steps:
- name: Checkout staking-miner sources
uses: actions/checkout@v4
- name: Create an issue
uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLAB_PIPELINE_URL: ${{ inputs.gitlab_pipeline }}
with:
# Use this issue template:
filename: .github/issue_templates/nightly_run_failed.md
# Update existing issue if found; hopefully will make it clearer
# that it is still an issue:
update_existing: true
# Look for new *open* issues in this search (we want to
# create a new one if we only find closed versions):
search_existing: open
- name: Fail workflow if tests failed
run: exit 1