Skip to content

Commit 5091801

Browse files
authored
feat: add release-drafter.yml (#181)
* feat: add .github/workflows/release-drafter.yml * feat: add .github/workflows/release-drafter.yml * change token name
1 parent c5a20f0 commit 5091801

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/release-drafter.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_extends: .github

.github/workflows/release-drafter.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Release Drafter
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
workflow_dispatch:
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 the default branch
14+
- uses: release-drafter/release-drafter@v5
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.CPP_LINTER_TOKEN }}

0 commit comments

Comments
 (0)