Skip to content

chore(deps): bump airbyte from 0.24.2 to 0.25.0 #180

chore(deps): bump airbyte from 0.24.2 to 0.25.0

chore(deps): bump airbyte from 0.24.2 to 0.25.0 #180

name: Slash Command Dispatch
on:
issue_comment:
types: [created]
jobs:
slashCommandDispatch:
# Only allow slash commands on pull request (not on issues)
runs-on: ubuntu-latest
steps:
- name: Slash Command Dispatch
id: dispatch
uses: peter-evans/slash-command-dispatch@v4
with:
repository: ${{ github.repository }}
token: ${{ github.token }}
dispatch-type: workflow
issue-type: both
commands: |
fix
lock
test
generate
poe
static-args: |
comment-id=${{ github.event.comment.id }}
pr=${{ github.event.issue.pull_request != null && github.event.issue.number || '' }}
# Only run for users with 'write' permission on the main repository
permission: write
- name: Edit comment with error message
if: steps.dispatch.outputs.error-message
uses: peter-evans/create-or-update-comment@v4
with:
comment-id: ${{ github.event.comment.id }}
body: |
> Error: ${{ steps.dispatch.outputs.error-message }}