Linkify changelog (#46)

This commit is contained in:
Dev Ojha
2021-03-23 13:59:51 -05:00
committed by GitHub
parent 666da1e3b2
commit fea21d919a
3 changed files with 58 additions and 7 deletions

20
.github/workflows/linkify_changelog.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Linkify Changelog
on:
workflow_dispatch
jobs:
linkify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Add links
run: python3 scripts/linkify_changelog.py CHANGELOG.md
- name: Commit
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "Linkify Changelog"
git push