Skip to content

Commit

Permalink
CI TEST: Benign docstring change (#32621)
Browse files Browse the repository at this point in the history
  • Loading branch information
bnchrch authored Nov 17, 2023
1 parent 5c87e1c commit 796f4fa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/slash-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
echo ref="$(echo $pr_info | jq -r '.head.ref')" >> $GITHUB_OUTPUT
echo repo="$(echo $pr_info | jq -r '.head.repo.full_name')" >> $GITHUB_OUTPUT
- name: Slash Command Dispatch
- name: Slash Command Dispatch (Workflow)
id: scd
uses: peter-evans/slash-command-dispatch@v3
with:
Expand All @@ -29,13 +29,22 @@ jobs:
publish-java-cdk
legacy-publish
connector-performance
approve-and-merge-demo
static-args: |
repo=${{ steps.getref.outputs.repo }}
gitref=${{ steps.getref.outputs.ref }}
comment-id=${{ github.event.comment.id }}
dispatch-type: workflow

- name: Slash Command Dispatch (Repository)
id: scdr
uses: peter-evans/slash-command-dispatch@v3
with:
token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
permission: write
commands: |
approve-and-merge-demo
dispatch-type: repository

- name: Edit comment with error message
if: steps.scd.outputs.error-message
uses: peter-evans/create-or-update-comment@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@pass_pipeline_context
@click_ignore_unused_kwargs
async def test(pipeline_context: ClickPipelineContext):
"""Runs the tests for the given airbyte-ci package
"""Runs the tests for the given airbyte-ci package.
Args:
pipeline_context (ClickPipelineContext): The context object.
Expand Down

0 comments on commit 796f4fa

Please sign in to comment.