File tree Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 1
1
name-template : ' v$RESOLVED_VERSION 🌈'
2
+
2
3
tag-template : ' v$RESOLVED_VERSION'
4
+
3
5
categories :
4
6
- title : ' 🚀 Features'
5
7
labels :
@@ -11,19 +13,31 @@ categories:
11
13
- ' bugfix'
12
14
- ' bug'
13
15
- title : ' 🧰 Maintenance'
14
- label : ' chore'
16
+ labels :
17
+ - ' chore'
18
+ - ' debt'
19
+
15
20
change-template : ' - $TITLE @$AUTHOR (#$NUMBER)'
21
+
16
22
version-resolver :
17
23
major :
18
24
labels :
19
25
- ' major'
26
+ - ' breaking'
20
27
minor :
21
28
labels :
22
29
- ' minor'
30
+ - ' feature'
23
31
patch :
24
32
labels :
25
33
- ' patch'
34
+ - ' bugfix'
35
+ - ' debt'
26
36
default : patch
37
+
38
+ exclude-labels :
39
+ - ' skip-changelog'
40
+
27
41
template : |
28
42
## Changes
29
43
Original file line number Diff line number Diff line change
1
+ # Basic dependabot.yml file with
2
+ # minimum configuration for two package managers
3
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
4
+
5
+ version : 2
6
+ updates :
7
+
8
+ # Maintain dependencies for GitHub Actions
9
+ - package-ecosystem : " github-actions"
10
+ directory : " /"
11
+ schedule :
12
+ interval : " daily"
13
+
14
+
15
+ # Enable version updates for python pip
16
+ - package-ecosystem : " pip"
17
+ directory : " /"
18
+ schedule :
19
+ interval : " daily"
Original file line number Diff line number Diff line change
1
+ name : Changelog Drafter
2
+
3
+ on :
4
+ push :
5
+ # develop is our tracking branch
6
+ branches :
7
+ - develop
8
+
9
+ jobs :
10
+ update_release_draft :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ # Drafts your next Release notes as Pull Requests are merged into "master"
14
+ - uses : release-drafter/release-drafter@v5
15
+ with :
16
+ # (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
17
+ config-name : changelog-drafter.yml
18
+ env :
19
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
- name : Python package
1
+ name : Python Test and Lint
2
2
3
3
on : [push]
4
4
You can’t perform that action at this time.
0 commit comments