File tree Expand file tree Collapse file tree 4 files changed +29
-11
lines changed Expand file tree Collapse file tree 4 files changed +29
-11
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,19 @@ name: Build gopass
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches :
6
+ - master
6
7
pull_request :
7
- branches : [ master ]
8
+ branches :
9
+ - master
8
10
9
11
concurrency :
10
- group : ci -${{ github.ref }}-build
12
+ group : ${{ github.workflow }} -${{ github.ref }}
11
13
cancel-in-progress : true
12
14
15
+ permissions :
16
+ contents : read
17
+
13
18
jobs :
14
19
linux :
15
20
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -13,17 +13,22 @@ name: "CodeQL"
13
13
14
14
on :
15
15
push :
16
- branches : [ master ]
16
+ branches :
17
+ - master
17
18
pull_request :
18
19
# The branches below must be a subset of the branches above
19
- branches : [ master ]
20
+ branches :
21
+ - master
20
22
schedule :
21
23
- cron : ' 19 21 * * 0'
22
24
23
25
concurrency :
24
- group : ci -${{ github.ref }}-codeql
26
+ group : ${{ github.workflow }} -${{ github.ref }}
25
27
cancel-in-progress : true
26
28
29
+ permissions :
30
+ contents : read
31
+
27
32
jobs :
28
33
analyze :
29
34
name : Analyze
Original file line number Diff line number Diff line change @@ -2,9 +2,15 @@ name: golangci-lint
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches :
6
+ - master
6
7
pull_request :
7
- branches : [ master ]
8
+ branches :
9
+ - master
10
+
11
+ concurrency :
12
+ group : ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress : true
8
14
9
15
permissions :
10
16
contents : read
Original file line number Diff line number Diff line change @@ -2,12 +2,14 @@ name: Scan gopass
2
2
3
3
on :
4
4
push :
5
- branches : [ master ]
5
+ branches :
6
+ - master
6
7
pull_request :
7
- branches : [ master ]
8
+ branches :
9
+ - master
8
10
9
11
concurrency :
10
- group : ci -${{ github.ref }}-build
12
+ group : ${{ github.workflow }} -${{ github.ref }}
11
13
cancel-in-progress : true
12
14
13
15
jobs :
You can’t perform that action at this time.
0 commit comments