Skip to content

Commit 7fa69f1

Browse files
committed
cfg workflows
1 parent 02a352d commit 7fa69f1

File tree

4 files changed

+67
-0
lines changed

4 files changed

+67
-0
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: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name-template: '$NEXT_MINOR_VERSION'
2+
tag-template: '$NEXT_MINOR_VERSION'
3+
categories:
4+
- title: '🚀 New Features'
5+
labels:
6+
- 'type:new feature'
7+
- title: '🔬 Improvements'
8+
labels:
9+
- 'type:improvement'
10+
- title: '🐞 Bug Fixes'
11+
labels:
12+
- 'type:bug'
13+
- title: '⬆️ Dependency Updates'
14+
labels:
15+
- 'type:dependencies'
16+
17+
change-template: '* $TITLE (via #$NUMBER) - @$AUTHOR'
18+
exclude-labels:
19+
- 'type:internal'
20+
template: |
21+
$CHANGES
22+
23+
## 👀 Links
24+
25+
[Commits since $PREVIOUS_TAG](https://github.com/allure-framework/allure-phpunit/compare/$PREVIOUS_TAG...master)

.github/workflows/draft-release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release Draft
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
update_draft_release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: toolmantim/[email protected]
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/labels-verify.yml

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)