Skip to content

Commit

Permalink
chore: add towncrier changelog workflow (#444)
Browse files Browse the repository at this point in the history
## Description

<!-- Please reference issue if any. -->

<!-- Please include a summary of your changes. -->

## How has this been tested?

<!-- Please describe the tests that you ran to verify your changes.  -->

## Checklist

- [ ] [changelog](../CHANGELOG.md) was updated with notable changes
- [ ] documentation was updated

Signed-off-by: ThibaultFy <[email protected]>
  • Loading branch information
ThibaultFy authored Aug 7, 2024
1 parent f7b441d commit 2033495
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/towncrier-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Towncrier changelog

on:
workflow_dispatch:
inputs:
app_version:
type: string
description: 'The version of the app'
required: true
branch:
type: string
description: 'The branch to update'
required: true

jobs:
test-generate-publish:
uses: substra/substra-gha-workflows/.github/workflows/towncrier-changelog.yml@main
secrets: inherit
with:
app_version: ${{ inputs.app_version }}
repo: orchestrator
branch: ${{ inputs.branch }}

0 comments on commit 2033495

Please sign in to comment.