Add a .vscode/launch.json file to the default project template to ease out-of-the-box debugging in VSCode. #692
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: Dispatch CICD commands | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
dispatch-command: | |
runs-on: ubuntu-latest | |
# Only run for PRs, not issue comments | |
if: ${{ github.event.issue.pull_request }} | |
steps: | |
- name: Slash Command Dispatch | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.MONKEYBOT_PAT }} | |
issue-type: pull-request | |
permission: write | |
# Define commands here | |
commands: | | |
integration |