Merge pull request #8512 from DefectDojo/release/2.25.1 #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Drafter | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: | | |
The version to be associated with the GitHub release that's created or updated. | |
This will override any version calculated by the release-drafter. | |
required: false | |
push: | |
# branches to consider in the event; optional, defaults to all | |
branches: | |
- master | |
- dev | |
jobs: | |
update_release_draft: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v5.24.0 | |
with: | |
version: ${{github.event.inputs.version}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |