File tree Expand file tree Collapse file tree 9 files changed +94
-28
lines changed Expand file tree Collapse file tree 9 files changed +94
-28
lines changed Original file line number Diff line number Diff line change 6
6
version : 2
7
7
updates :
8
8
9
- # Maintain dependencies for GitHub Actions
10
- - package-ecosystem : " github-actions"
11
- directory : " /"
12
- schedule :
13
- interval : " weekly"
14
- target-branch : " dev"
15
- commit-message :
16
- prefix : " chore"
17
- include : " scope"
18
- labels :
19
- - " Type: Maintenance"
20
-
21
9
# Maintain dependencies for go modules
22
10
- package-ecosystem : " gomod"
23
11
directory : " /"
@@ -30,14 +18,26 @@ updates:
30
18
labels :
31
19
- " Type: Maintenance"
32
20
33
- # Maintain dependencies for docker
34
- - package-ecosystem : " docker"
35
- directory : " /"
36
- schedule :
37
- interval : " weekly"
38
- target-branch : " dev"
39
- commit-message :
40
- prefix : " chore"
41
- include : " scope"
42
- labels :
43
- - " Type: Maintenance"
21
+ # # Maintain dependencies for docker
22
+ # - package-ecosystem: "docker"
23
+ # directory: "/"
24
+ # schedule:
25
+ # interval: "weekly"
26
+ # target-branch: "dev"
27
+ # commit-message:
28
+ # prefix: "chore"
29
+ # include: "scope"
30
+ # labels:
31
+ # - "Type: Maintenance"
32
+ #
33
+ # # Maintain dependencies for GitHub Actions
34
+ # - package-ecosystem: "github-actions"
35
+ # directory: "/"
36
+ # schedule:
37
+ # interval: "weekly"
38
+ # target-branch: "dev"
39
+ # commit-message:
40
+ # prefix: "chore"
41
+ # include: "scope"
42
+ # labels:
43
+ # - "Type: Maintenance"
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ changelog:
3
3
authors :
4
4
- dependabot
5
5
categories :
6
- - title : 🎉 Features
6
+ - title : 🎉 New Features
7
7
labels :
8
8
- " Type: Enhancement"
9
- - title : 🐞 Bugs
9
+ - title : 🐞 Bugs Fixes
10
10
labels :
11
11
- " Type: Bug"
12
12
- title : 🔨 Maintenance
Original file line number Diff line number Diff line change
1
+ name : 🤖 dep auto merge
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - dev
7
+ workflow_dispatch :
8
+
9
+ permissions :
10
+ pull-requests : write
11
+ issues : write
12
+ repository-projects : write
13
+
14
+ jobs :
15
+ automerge :
16
+ runs-on : ubuntu-latest
17
+ if : github.actor == 'dependabot[bot]'
18
+ steps :
19
+ - uses : actions/checkout@v3
20
+ with :
21
+ token : ${{ secrets.DEPENDABOT_PAT }}
22
+
23
+ - uses : ahmadnassri/action-dependabot-auto-merge@v2
24
+ with :
25
+ github-token : ${{ secrets.DEPENDABOT_PAT }}
26
+ target : all
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
docker :
12
- runs-on : ubuntu-latest
12
+ runs-on : ubuntu-latest-16-cores
13
13
steps :
14
14
- name : Git Checkout
15
15
uses : actions/checkout@v3
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
release :
10
- runs-on : ubuntu-latest
10
+ runs-on : ubuntu-latest-16-cores
11
11
steps :
12
12
- name : " Check out code"
13
13
uses : actions/checkout@v3
Original file line number Diff line number Diff line change
1
+ name : 🔨 Release Test
2
+
3
+ on :
4
+ pull_request :
5
+ paths :
6
+ - ' **.go'
7
+ - ' **.mod'
8
+ - ' **.yml'
9
+ workflow_dispatch :
10
+
11
+ jobs :
12
+ release-test :
13
+ runs-on : ubuntu-latest-16-cores
14
+ steps :
15
+ - name : " Check out code"
16
+ uses : actions/checkout@v3
17
+ with :
18
+ fetch-depth : 0
19
+
20
+ - name : Set up Go
21
+ uses : actions/setup-go@v4
22
+ with :
23
+ go-version : 1.20.x
24
+
25
+ - name : release test
26
+ uses : goreleaser/goreleaser-action@v4
27
+ with :
28
+ args : " release --clean --snapshot"
29
+ version : latest
30
+ workdir : .
Original file line number Diff line number Diff line change 5
5
schedule :
6
6
- cron : ' 0 0 * * 0'
7
7
8
+ permissions :
9
+ pull-requests : write
10
+ issues : write
11
+ repository-projects : write
12
+
8
13
jobs :
9
14
cipherstatus :
10
15
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 5
5
schedule :
6
6
- cron : ' 0 0 * * 0'
7
7
8
+ permissions :
9
+ pull-requests : write
10
+ issues : write
11
+ repository-projects : write
12
+
8
13
jobs :
9
14
rootca :
10
15
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ var banner = fmt.Sprintf(`
18
18
|_| |____|___/_/\_\ %s
19
19
` , version )
20
20
21
- const version = "v1.1.1 "
21
+ const version = "v1.1.2 "
22
22
23
23
// validateOptions validates the provided options for crawler
24
24
func (r * Runner ) validateOptions () error {
You can’t perform that action at this time.
0 commit comments