mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
19 lines
540 B
YAML
19 lines
540 B
YAML
name: Debug Changelog # Workflow name displayed on GitHub
|
|
on:
|
|
workflow_dispatch: # Trigger manually
|
|
jobs:
|
|
debug-changelog:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Create changelog text
|
|
id: changelog
|
|
uses: loopwerk/tag-changelog@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
config_file: .github/tag-changelog-config.js
|
|
- name: 'Echo results'
|
|
id: output-changelog
|
|
run: |
|
|
echo "${{ steps.changelog.outputs.changes }}"
|