Skip to content

Commit

Permalink
build: GitHub Action writes changelog action to named file.
Browse files Browse the repository at this point in the history
  • Loading branch information
outofcoffee committed Jan 11, 2025
1 parent a5d4c1b commit 6820cdc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Extract Changelog entries for most recent version
description: Extracts entries from the changelog file for the most recent version.
description: Extracts entries from the changelog file for the most recent version and writes them to a file.
inputs:
output-file:
description: 'The file to write the extracted entries to.'
description: 'The file to write the extracted entries to, relative to the workspace.'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
args: [ "changelog", "extract" ]
working-directory: /github/workspace
args: [ "changelog", "extract", "--quiet", "--output-file", "/github/workspace/${{ inputs.output-file }}" ]

0 comments on commit 6820cdc

Please sign in to comment.