build(deps): bump google.golang.org/grpc from 1.60.0 to 1.60.1 #365
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: | |
dispatch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dispatch deploy slash command | |
id: deploy | |
uses: peter-evans/slash-command-dispatch@v3 | |
with: | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
reaction-token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
commands: deploy | |
dispatch-type: workflow | |
repository: dictybase/slash-command-processor-backend | |
static-args: | | |
repository-name=${{ github.event.repository.name }} | |
repository-owner=${{ github.repository_owner }} | |
issue-number=${{ github.event.issue.number }} | |
html-url=${{ github.event.comment.html_url }} | |
comment-id=${{ github.event.comment.id }} | |
chart-name=order-api-server | |
- name: Edit comment with error message | |
if: steps.deploy.outputs.error-message | |
uses: peter-evans/create-or-update-comment@v3 | |
with: | |
comment-id: ${{ github.event.comment.id }} | |
body: | | |
> ${{ steps.deploy.outputs.error-message }} | |
> For /deploy commands used in GitHub Issues, you need to specify either specify a `commit` or `branch` to deploy. | |
> Example: `/deploy cluster=erickube branch=feature/new-command` | |
> For /deploy commands used in pull requests, you can optionally specify a `commit`. |