Skip to content

Commit

Permalink
Merge pull request #32 from cta-observatory/release-drafter
Browse files Browse the repository at this point in the history
Add release drafter action and template
  • Loading branch information
cpozogonzalez authored Dec 25, 2024
2 parents a96560c + e116549 commit 82d6443
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
template: |
## What's Changed since $PREVIOUS_TAG
$CHANGES
## Contributors
$CONTRIBUTORS
17 changes: 17 additions & 0 deletions .github/workflows/release_drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Release Drafter

on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- main


jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 82d6443

Please sign in to comment.