mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
34 lines
848 B
YAML
34 lines
848 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: read-all
|
|
|
|
jobs:
|
|
debug-changelog:
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions: write-all
|
|
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: Create changelog text
|
|
id: changelog
|
|
uses: loopwerk/tag-changelog@941366edb8920e2071eae0449031830984b9f26e # v1.3.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 }}"
|