We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 566e5f4 commit 14ec113Copy full SHA for 14ec113
1 file changed
.github/workflows/slash-command-dispatch.yaml
@@ -6,7 +6,7 @@ on:
6
types: [created]
7
8
jobs:
9
- slashCommandDispatch:
+ command-dispatch:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Dispatch
@@ -22,3 +22,13 @@ jobs:
22
static-args: |
23
repository=${{ github.repository }}
24
comment-id=${{ github.event.comment.id }}
25
+
26
+ - name: Update comment with error message
27
+ if: steps.scd.outputs.error-message
28
+ uses: peter-evans/create-or-update-comment@v5
29
+ with:
30
+ comment-id: ${{ github.event.comment.id }}
31
+ body: |
32
+ **Errors:**
33
34
+ ${{ steps.scd.outputs.error-message }}
0 commit comments