-
Notifications
You must be signed in to change notification settings - Fork 173
73 lines (63 loc) · 1.66 KB
/
test-e2e-shim.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Docs Skip Shim
on:
pull_request:
paths:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# This is here to act as a shim for branch protection rules to work correctly.
# This is ugly but this seems to be the best way to do this since:
# - Job names in a workflow must be unique
# - When paths are ignored not all jobs are reported to the branch protection rules
# - Multiple jobs of the same name are still required by branch protection rules
# For more info see below:
# https://github.com/orgs/community/discussions/54877
# https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks#handling-skipped-but-required-checks
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-skip-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
validate-without-cluster:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
validate-k3d:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
validate-k3s:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
validate-kind:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped
validate-minikube:
runs-on: ubuntu-latest
steps:
- name: Skipped
run: |
echo skipped