mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-03-04 02:00:03 +00:00
36 lines
867 B
YAML
36 lines
867 B
YAML
---
|
|
# $schema: "https://json.schemastore.org/github-workflow.json"
|
|
name: Debug Changelog # Workflow name displayed on GitHub
|
|
|
|
on:
|
|
workflow_dispatch: # Trigger manually
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
debug-changelog:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Create changelog text
|
|
id: changelog
|
|
uses: loopwerk/tag-changelog@8dd150d55fbf1fe93e0ea00a29a6153aaeb81912 # v1.5.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
config_file: .github/tag-changelog-config.js
|
|
|
|
- name: "Echo results"
|
|
id: output-changelog
|
|
run: |
|
|
echo "${{ steps.changelog.outputs.changes }}"
|