Add workflow to manually update the lib cache #2620
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog Bot | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
paths-ignore: | |
- CHANGELOG.md | |
jobs: | |
changelog-bot: | |
runs-on: ubuntu-latest | |
name: Update CHANGELOG.md | |
steps: | |
- name: Update Changelog | |
uses: docker://ponylang/changelog-bot-action:0.3.5 | |
with: | |
git_user_name: "Ponylang Main Bot" | |
git_user_email: "ponylang.main@gmail.com" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |