mirror of
https://github.com/akaessens/NoFbEventScraper
synced 2025-06-05 23:29:13 +02:00
Create changelog-generate.yml
This commit is contained in:
23
.github/workflows/changelog-generate.yml
vendored
Normal file
23
.github/workflows/changelog-generate.yml
vendored
Normal file
@ -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
|
Reference in New Issue
Block a user