-
Notifications
You must be signed in to change notification settings - Fork 26
50 lines (45 loc) · 1.04 KB
/
ci_skipped.yaml
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
44
45
46
47
48
49
50
name: CI Skipped
on:
pull_request:
branches: ["**"]
paths:
- 'README.md'
- 'LICENSE'
- "**/README.md"
- "**/docs/**"
- '!**/*.rs'
- '!**/*.toml'
- '!**/*.yaml'
- '!**/*.sh'
- '!**/*.json'
- '!**/*.rlp'
- '!**Dockefile'
- '!**Makefile'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
# "Lint" is a required check, don't change the name
name: Lint
runs-on: ubuntu-latest
if: false
steps: [run: true]
test:
# "Test" is a required check, don't change the name
name: Test
runs-on: ubuntu-latest
if: false
steps: [run: true]
docker-build:
# "Build Docker" is a required check, don't change the name
name: Build Docker
runs-on: ubuntu-latest
if: false
steps: [run: true]
all-tests:
# "Integration Test" is a required check, don't change the name
name: Integration Test
runs-on: ubuntu-latest
if: false
steps: [run: true]