Skip to content

Commit

Permalink
Merge pull request #41 from gradle/release-drafter
Browse files Browse the repository at this point in the history
Add Release Drafter to generate content changelogs and attributions
  • Loading branch information
oleg-nenashev authored Jun 11, 2024
2 parents 3f9c107 + 5b33dc3 commit e0043ec
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Use https://github.com/gradle/.github/blob/main/.github/release_drafter.yml
_extends: .github
26 changes: 26 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Drafter

on:
push:
branches:
- main
workflow_dispatch:

jobs:
update_release_draft:
runs-on: ubuntu-latest

permissions:
# Write permission is required to create a github release
contents: write
# Write permission is required for autolabeler
pull-requests: write

steps:
- uses: release-drafter/release-drafter@v6
with:
name: next
tag: next
version: next
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e0043ec

Please sign in to comment.