Skip to content

Commit febc760

Browse files
author
Luke Sikina
committed
Release
1 parent b6b0a46 commit febc760

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.github/release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
categories:
6+
- title: Breaking Changes
7+
labels:
8+
- breaking-change
9+
- title: Features
10+
labels:
11+
- feature
12+
- title: Enhancements
13+
labels:
14+
- enhancement
15+
- title: Bug Fixes
16+
labels:
17+
- bug
18+
- title: Other Changes
19+
labels:
20+
- "*"

.github/workflows/label-checker.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Label Checker
2+
on:
3+
pull_request:
4+
types:
5+
- opened
6+
- synchronize
7+
- reopened
8+
- labeled
9+
- unlabeled
10+
11+
jobs:
12+
13+
check_labels:
14+
name: Check labels
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: docker://agilepathway/pull-request-label-checker:latest
18+
with:
19+
one_of: breaking-change,enhancement,bug,documentation,ignore-for-release,dependencies
20+
repo_token: ${{ secrets.GITHUB_TOKEN }}
21+

0 commit comments

Comments
 (0)