Need to add numeration for folders and fix for prompts #229
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: Slash Command Dispatch | |
on: | |
issue_comment: | |
types: [created] | |
jobs: | |
slashCommandDispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Slash Command Dispatch | |
id: scd | |
uses: peter-evans/slash-command-dispatch@a28ee6cd74d5200f99e247ebc7b365c03ae0ef3c # v3.0.1 | |
with: | |
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | |
reaction-token: ${{ secrets.ACTIONS_BOT_TOKEN }} | |
config: > | |
[ | |
{ | |
"command": "deploy-review", | |
"permission": "write", | |
"issue_type": "pull-request", | |
"repository": "epam/ai-dial-ci", | |
"static_args": [ | |
"application=${{ github.event.repository.name }}" | |
] | |
} | |
] |