Skip to content

Commit 70e1456

Browse files
committed
cfg workflows
1 parent 6e13d27 commit 70e1456

File tree

5 files changed

+44
-7
lines changed

5 files changed

+44
-7
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
labels:
8+
- "type:dependencies"
9+
10+
- package-ecosystem: "composer"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
labels:
15+
- "type:dependencies"

.github/release-drafter.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,24 @@ name-template: '$NEXT_MINOR_VERSION'
22
tag-template: '$NEXT_MINOR_VERSION'
33
categories:
44
- title: '🚀 New Features'
5-
label: 'type:new feature'
5+
labels:
6+
- 'type:new feature'
67
- title: '🔬 Improvements'
7-
label: 'type:improvement'
8+
labels:
9+
- 'type:improvement'
810
- title: '🐞 Bug Fixes'
9-
label: 'type:bug'
10-
- title: '📦 Dependency updates'
11-
label: ' type:dependency'
11+
labels:
12+
- 'type:bug'
13+
- title: '⬆️ Dependency Updates'
14+
labels:
15+
- 'type:dependencies'
1216

1317
change-template: '* $TITLE (via #$NUMBER) - @$AUTHOR'
18+
exclude-labels:
19+
- 'type:internal'
1420
template: |
1521
$CHANGES
22+
1623
## 👀 Links
17-
[Commits since $PREVIOUS_TAG](https://github.com/allure-framework/allure-codeception/compare/$PREVIOUS_TAG...master)
24+
25+
[Commits since $PREVIOUS_TAG](https://github.com/allure-framework/allure-codeception/compare/$PREVIOUS_TAG...master)

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- 'master'
10+
- 'hotfix-*'
1011

1112
jobs:
1213
build71:

.github/workflows/draft-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
update_draft_release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: toolmantim/release-drafter@v5.2.0
12+
- uses: toolmantim/release-drafter@v5.15.0
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: "Verify type labels"
2+
3+
on:
4+
pull_request:
5+
types: [opened, labeled, unlabeled, synchronize]
6+
7+
jobs:
8+
triage:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: zwaldowski/match-label-action@v2
12+
with:
13+
allowed: 'type:bug,type:new feature,type:improvement,type:dependencies,type:internal,type:invalid'

0 commit comments

Comments
 (0)