You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
459 B

  1. name: Linkify Changelog
  2. on:
  3. workflow_dispatch
  4. jobs:
  5. linkify:
  6. runs-on: ubuntu-latest
  7. steps:
  8. - name: Checkout
  9. uses: actions/checkout@v2
  10. - name: Add links
  11. run: python3 scripts/linkify_changelog.py CHANGELOG.md
  12. - name: Commit
  13. run: |
  14. git config user.name github-actions
  15. git config user.email github-actions@github.com
  16. git add .
  17. git commit -m "Linkify Changelog"
  18. git push