mirror of
https://github.com/psforever/PSF-LoginServer.git
synced 2026-02-28 11:03:42 +00:00
21 lines
No EOL
580 B
YAML
21 lines
No EOL
580 B
YAML
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@v4
|
|
with:
|
|
token: ${{ secrets.SLASH_COMMANDS_PAT }}
|
|
issue-type: pull-request
|
|
dispatch-type: repository
|
|
permission: write
|
|
commands: |
|
|
test-server
|
|
static-args: |
|
|
repository=${{ github.repository }}
|
|
comment-id=${{ github.event.comment.id }} |