We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aba6d3 commit 059bb71Copy full SHA for 059bb71
.github/workflows/on-review-add-label.yml
@@ -17,6 +17,8 @@ jobs:
17
- name: Run this on Dummy workflow success
18
run: echo "Dummy Workflow on review completes successfully"
19
download_context_artifact:
20
+ needs:
21
+ - run_on_workflow_a_success
22
runs-on: ubuntu-latest
23
steps:
24
- name: 'Download artifact'
.github/workflows/workflow-review.yml
@@ -13,6 +13,9 @@ permissions:
13
jobs:
14
15
dummy-workflow:
16
+ if: |
+ github.event.pull_request != '' &&
+ !contains(github.event.sender.login, 'coderabbitai[bot]')
0 commit comments