Create changelog-generate.yml
This commit is contained in:
parent
d3ade66878
commit
85f68f35ac
|
@ -0,0 +1,23 @@
|
||||||
|
name: changelog-generate
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run-script:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: '0' # get tags
|
||||||
|
|
||||||
|
- name: run-script
|
||||||
|
shell: bash
|
||||||
|
run: $GITHUB_WORKSPACE/create_changelog.sh
|
||||||
|
|
||||||
|
- uses: stefanzweifel/git-auto-commit-action@v4
|
||||||
|
with:
|
||||||
|
commit_message: Update changelog
|
Loading…
Reference in New Issue