Bin
2025-12-16 971a2a12c03b74dd2d7d668b9dbc599f5131bcaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: "/help command"
 
on:
  repository_dispatch:
    types: [ help-command ]
jobs:
  help:
    runs-on: ubuntu-latest
    timeout-minutes: 1
    steps:
      - name: Update comment if empty
        if: ${{ github.event.client_payload.slash_command.args.all == '' }}
        uses: peter-evans/create-or-update-comment@v5
        with:
          token: ${{ secrets.GIT_PAT }}
          repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
          comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
          body: |
            > Command | Description
            > --- | ---
            > /frontend [\<args\> ...] | Actions with frontend. Type `/frontend help` for an additional help.
          reactions: hooray