https://github.com/brdgm/github-action-release-drafter
GitHub Action
https://github.com/brdgm/github-action-release-drafter
Last synced: 4 months ago
JSON representation
GitHub Action
- Host: GitHub
- URL: https://github.com/brdgm/github-action-release-drafter
- Owner: brdgm
- License: apache-2.0
- Created: 2025-03-23T12:32:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-13T06:35:48.000Z (10 months ago)
- Last Synced: 2025-08-13T08:28:15.312Z (10 months ago)
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
github-action-release-drafter
======
Create release draft based on pull requests merged since last release.
Usage example:
```yaml
name: Release Drafter
on:
push:
branches:
- develop
permissions:
contents: read
jobs:
update_release_draft:
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: brdgm/github-action-release-drafter@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```