File tree 3 files changed +42
-5
lines changed
3 files changed +42
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : Dependabot Auto-merge
2
+
3
+ on :
4
+ pull_request :
5
+ branches :
6
+ - main
7
+
8
+ concurrency :
9
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
10
+ cancel-in-progress : true
11
+
12
+ permissions : {}
13
+
14
+ jobs :
15
+ dependabot :
16
+ permissions :
17
+ contents : write
18
+ pull-requests : write
19
+ uses : typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v2
20
+ with :
21
+ minor : true
22
+ patch : true
Original file line number Diff line number Diff line change
1
+ name : Release Drafter
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ push :
6
+ branches :
7
+ - main
8
+
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref_name }}
11
+ cancel-in-progress : true
12
+
13
+ permissions : {}
14
+
15
+ jobs :
16
+ release-drafter :
17
+ uses : typisttech/.github/.github/workflows/release-drafter.yml@v2
18
+ permissions :
19
+ contents : write
20
+ pull-requests : read
Original file line number Diff line number Diff line change 10
10
- main
11
11
tags :
12
12
- ' **'
13
- paths-ignore :
14
- - .gitattributes
15
- - .gitignore
16
- - LICENSE
17
- - README.md
18
13
19
14
concurrency :
20
15
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}
You can’t perform that action at this time.
0 commit comments