Skip to content

Commit

Permalink
Add workflow templates for 'Update Changelog' & 'Release drafter' wor…
Browse files Browse the repository at this point in the history
…kflows
  • Loading branch information
carstingaxion committed Jun 27, 2023
1 parent 15c5a21 commit 3a21cd3
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 22 deletions.
8 changes: 0 additions & 8 deletions workflow-templates/ft-releases.properties.json

This file was deleted.

14 changes: 0 additions & 14 deletions workflow-templates/ft-releases.yml

This file was deleted.

8 changes: 8 additions & 0 deletions workflow-templates/release-drafter.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Draft or update the next release",
"description": "Drafts or updates the next release notes as pull requests are merged into main.",
"iconName": "ft-logo",
"categories": [
"Continuous integration"
]
}
12 changes: 12 additions & 0 deletions workflow-templates/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Draft or update the next release

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

jobs:
call-workflow-release-drafter:
uses: figuren-theater/.github/.github/workflows/release-drafter.yml@main
secrets: inherit
8 changes: 8 additions & 0 deletions workflow-templates/update-changelog.properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "Update Changelog",
"description": "A GitHub Action to automatically update a \"Keep a Changelog\" CHANGELOG with the latest release notes.",
"iconName": "ft-logo",
"categories": [
"Continuous integration"
]
}
11 changes: 11 additions & 0 deletions workflow-templates/update-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: 'Update Changelog'

on:
release:
types: [released]

jobs:
call-workflow-update-changelog:
uses: figuren-theater/.github/.github/workflows/update-changelog.yml@main
secrets: inherit

0 comments on commit 3a21cd3

Please sign in to comment.