File tree Expand file tree Collapse file tree 5 files changed +0
-113
lines changed Expand file tree Collapse file tree 5 files changed +0
-113
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -20,28 +20,9 @@ permissions:
20
20
contents : read
21
21
22
22
jobs :
23
- planner :
24
- name : Detect docs-only changes
25
- runs-on : ubuntu-latest
26
- outputs :
27
- continue : ${{ steps.check.outputs.only_markdown_changes != 'true' }}
28
- steps :
29
- - uses : actions/checkout@v4
30
- with :
31
- submodules : ' recursive'
32
- fetch-depth : 0
33
- - name : Check for markdown-only changes
34
- id : check
35
- uses : ./.github/actions/only-markdown
36
- with :
37
- github_token : ${{ secrets.GITHUB_TOKEN }}
38
-
39
23
build :
40
24
name : Build
41
- needs : planner
42
- if : ${{ needs.planner.outputs.continue }}
43
25
runs-on : ubuntu-latest
44
-
45
26
steps :
46
27
- uses : actions/checkout@v4
47
28
with :
Original file line number Diff line number Diff line change @@ -20,26 +20,8 @@ permissions:
20
20
contents : read
21
21
22
22
jobs :
23
- planner :
24
- name : Detect docs-only changes
25
- runs-on : ubuntu-latest
26
- outputs :
27
- continue : ${{ steps.check.outputs.only_markdown_changes != 'true' }}
28
- steps :
29
- - uses : actions/checkout@v4
30
- with :
31
- submodules : ' recursive'
32
- fetch-depth : 0
33
- - name : Check for markdown-only changes
34
- id : check
35
- uses : ./.github/actions/only-markdown
36
- with :
37
- github_token : ${{ secrets.GITHUB_TOKEN }}
38
-
39
23
check-gen :
40
24
name : Check (gen-check)
41
- needs : planner
42
- if : ${{ needs.planner.outputs.continue }}
43
25
runs-on : ubuntu-latest
44
26
steps :
45
27
- uses : actions/checkout@v4
55
37
- run : git diff --exit-code
56
38
check-lint :
57
39
name : Check (lint-all)
58
- needs : planner
59
- if : ${{ needs.planner.outputs.continue }}
60
40
runs-on : ubuntu-latest
61
41
steps :
62
42
- uses : actions/checkout@v4
69
49
- run : make lint
70
50
check-fmt :
71
51
name : Check (gofmt)
72
- needs : planner
73
- if : ${{ needs.planner.outputs.continue }}
74
52
runs-on : ubuntu-latest
75
53
steps :
76
54
- uses : actions/checkout@v4
82
60
- run : git diff --exit-code
83
61
check-mod-tidy :
84
62
name : Check (mod-tidy-check)
85
- needs : planner
86
- if : ${{ needs.planner.outputs.continue }}
87
63
runs-on : ubuntu-latest
88
64
steps :
89
65
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -28,26 +28,8 @@ permissions:
28
28
contents : read
29
29
30
30
jobs :
31
- planner :
32
- name : Detect docs-only changes
33
- runs-on : ubuntu-latest
34
- outputs :
35
- continue : ${{ steps.check.outputs.only_markdown_changes != 'true' }}
36
- steps :
37
- - uses : actions/checkout@v4
38
- with :
39
- submodules : ' recursive'
40
- fetch-depth : 0
41
- - name : Check for markdown-only changes
42
- id : check
43
- uses : ./.github/actions/only-markdown
44
- with :
45
- github_token : ${{ secrets.GITHUB_TOKEN }}
46
-
47
31
docker :
48
32
name : Docker (${{ matrix.image }} / ${{ matrix.network }}) [publish=${{ github.event.inputs.publish == 'true' || github.event_name != 'pull_request' }}]
49
- needs : planner
50
- if : ${{ needs.planner.outputs.continue }}
51
33
runs-on : ubuntu-latest
52
34
strategy :
53
35
fail-fast : false
Original file line number Diff line number Diff line change @@ -8,28 +8,10 @@ permissions:
8
8
contents : read
9
9
10
10
jobs :
11
- planner :
12
- name : Detect docs-only changes
13
- runs-on : ubuntu-latest
14
- outputs :
15
- continue : ${{ steps.check.outputs.only_markdown_changes != 'true' }}
16
- steps :
17
- - uses : actions/checkout@v4
18
- with :
19
- submodules : ' recursive'
20
- fetch-depth : 0
21
- - name : Check for markdown-only changes
22
- id : check
23
- uses : ./.github/actions/only-markdown
24
- with :
25
- github_token : ${{ secrets.GITHUB_TOKEN }}
26
-
27
11
stale :
28
12
permissions :
29
13
issues : write
30
14
pull-requests : write
31
- needs : planner
32
- if : ${{ needs.planner.outputs.continue }}
33
15
runs-on : ubuntu-latest
34
16
steps :
35
17
- uses : actions/stale@v9
You can’t perform that action at this time.
0 commit comments