-
-
Notifications
You must be signed in to change notification settings - Fork 10
40 lines (34 loc) · 1.02 KB
/
test_status_checks.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
name: Mock Status Checks
on:
push:
branches:
- protected
- non_protected
- 'push-action/**'
jobs:
mock_status_check:
runs-on: ubuntu-latest
name: Mock Status Check
steps:
- name: Important status check
run: echo "Very important status check - SUCCESS!"
another_mock_status_check:
runs-on: ubuntu-latest
name: Another Mock Status Check
steps:
- name: Important status check
run: echo "Very important status check - SUCCESS!"
skipped_mock_status_check:
runs-on: ubuntu-latest
name: Skipped Mock Status Check
if: ${{ !always() }}
steps:
- name: Skipped status check
run: echo "Very important skipped status check - here for --acceptable-conclusion testing - SKIPPED!"
another_skipped_mock_status_check:
runs-on: ubuntu-latest
name: Another Skipped Mock Status Check
if: ${{ !always() }}
steps:
- name: Skipped status check
run: echo "Very important skipped status check - here for --fail-fast testing - SKIPPED!"