Skip to content

Merge branch 'main' of https://github.com/lakecountryhuntclub/dnr-map… #2

Merge branch 'main' of https://github.com/lakecountryhuntclub/dnr-map…

Merge branch 'main' of https://github.com/lakecountryhuntclub/dnr-map… #2

Workflow file for this run

name: Changelog
on:
repository_dispatch:
workflow_dispatch:
push:
branches:
- main
- master
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate a changelog
uses: orhun/git-cliff-action@v1
id: git-cliff
with:
config: ./.github/cliff.toml
args: --verbose
env:
OUTPUT: ./CHANGELOG.md
- name: Print the changelog
run: cat "${{ steps.git-cliff.outputs.changelog }}"
- name: Commit and Push Changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}