zsh: allow to eval zsh completion #585
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
# runs on any comment matching the format `/tag <tagname> <commit>` | |
name: Comment Bot | |
on: | |
issue_comment: {types: [created]} | |
pull_request_review_comment: {types: [created]} | |
jobs: | |
tag: | |
runs-on: ubuntu-latest | |
permissions: {contents: write, pull-requests: write, issues: write} | |
steps: | |
- uses: actions/checkout@v4 | |
with: {fetch-depth: 0} | |
- uses: casperdcl/comment-bot@v1 |