File tree 7 files changed +52
-16
lines changed
7 files changed +52
-16
lines changed Original file line number Diff line number Diff line change 1
- on : [push, pull_request]
2
1
name : Build Test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
3
13
permissions :
4
14
contents : read
5
15
Original file line number Diff line number Diff line change 1
1
name : " Pull Request Labeler"
2
+
2
3
on :
3
- - pull_request_target
4
+ pull_request_target :
4
5
5
6
permissions :
6
7
contents : read
12
13
pull-requests : write # for actions/labeler to add labels to PRs
13
14
runs-on : ubuntu-latest
14
15
steps :
15
- - uses : actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
16
- with :
17
- repo-token : " ${{ secrets.GITHUB_TOKEN }}"
16
+ - uses : actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
17
+ with :
18
+ repo-token : " ${{ secrets.GITHUB_TOKEN }}"
Original file line number Diff line number Diff line change @@ -2,8 +2,14 @@ name: Golangci-lint
2
2
3
3
on :
4
4
push :
5
+ branches :
6
+ - master
5
7
pull_request :
6
8
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
7
13
permissions :
8
14
contents : read
9
15
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
1
3
on :
2
4
schedule :
3
- - cron : ' 0 1 1 * *' # UTC 01:00 on the first day of the Month
5
+ - cron : ' 0 1 1 * *' # UTC 01:00 on the first day of the Month
4
6
5
- name : Release
6
7
permissions :
7
8
contents : write
8
9
Original file line number Diff line number Diff line change @@ -2,19 +2,17 @@ name: SBOM Generator
2
2
3
3
on :
4
4
push :
5
- branches : [ "master" ]
6
-
5
+ branches :
6
+ - master
7
7
workflow_dispatch :
8
8
9
9
permissions : read-all
10
10
11
11
jobs :
12
12
build :
13
13
runs-on : ubuntu-latest
14
-
15
14
steps :
16
15
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
-
18
16
- uses : advanced-security/sbom-generator-action@6fe43abf522b2e7a19bc769aec1e6c848614b517 # v0.0.2
19
17
id : sbom
20
18
env :
Original file line number Diff line number Diff line change 1
- on : [push, pull_request]
2
1
name : Shellcheck
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
3
13
permissions :
4
14
contents : read
5
15
8
18
name : Shellcheck
9
19
runs-on : ubuntu-latest
10
20
steps :
11
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
12
- - name : Run ShellCheck
13
- uses : ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0
21
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22
+ - name : Run ShellCheck
23
+ uses : ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # v2.0.0
Original file line number Diff line number Diff line change 1
- on : [push, pull_request]
2
1
name : Test
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request :
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
3
13
permissions :
4
14
contents : read
5
15
You can’t perform that action at this time.
0 commit comments