Confusion about numpy version in 2024.07.30 release #1557
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
# https://github.com/peter-evans/slash-command-dispatch | |
name: ChatOps Dispatcher | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
slashCommandDispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slash Command Dispatch | |
uses: peter-evans/slash-command-dispatch@v4 | |
with: | |
token: ${{ secrets.PANGEOBOT_TOKEN }} | |
reaction-token: ${{ secrets.GITHUB_TOKEN }} | |
config: > | |
[ | |
{ | |
"command": "condalock", | |
"permission": "none", | |
"issue_type": "pull-request" | |
} | |
] |