Skip to content

Commit 82affa9

Browse files
authored
add some more github actions (#41)
1 parent 12f485e commit 82affa9

File tree

4 files changed

+54
-2
lines changed

4 files changed

+54
-2
lines changed

.github/changelog-drafter.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
name-template: 'v$RESOLVED_VERSION 🌈'
2+
23
tag-template: 'v$RESOLVED_VERSION'
4+
35
categories:
46
- title: '🚀 Features'
57
labels:
@@ -11,19 +13,31 @@ categories:
1113
- 'bugfix'
1214
- 'bug'
1315
- title: '🧰 Maintenance'
14-
label: 'chore'
16+
labels:
17+
- 'chore'
18+
- 'debt'
19+
1520
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
21+
1622
version-resolver:
1723
major:
1824
labels:
1925
- 'major'
26+
- 'breaking'
2027
minor:
2128
labels:
2229
- 'minor'
30+
- 'feature'
2331
patch:
2432
labels:
2533
- 'patch'
34+
- 'bugfix'
35+
- 'debt'
2636
default: patch
37+
38+
exclude-labels:
39+
- 'skip-changelog'
40+
2741
template: |
2842
## Changes
2943

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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"

.github/workflows/changelog.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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 }}

.github/workflows/testlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python package
1+
name: Python Test and Lint
22

33
on: [push]
44

0 commit comments

Comments
 (0)