Skip to content

Commit e9ee998

Browse files
committed
trigger after workflows complete
1 parent 522e4fd commit e9ee998

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/check_label_and_workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ on:
44
pull_request:
55
types: [opened, reopened, synchronize]
66
workflow_run:
7-
workflows: ["Code Checks", "Audit Service Tags", "Check CODEOWNERS Entries"]
7+
workflows: ["Code Checks", "Audit Service Tags", "Check CODEOWNERS Entries" "Pull Request Ready for Review"]
88
branches: ["*"]
99
types: [completed]
1010

1111
jobs:
1212
check:
13-
# if: ${{ github.ref != 'refs/heads/master' && github.event.workflow_run.conclusion == 'success' }}
13+
if: ${{ github.ref != 'refs/heads/master' }}
1414
runs-on: ubuntu-latest
1515
permissions:
1616
actions: read
@@ -48,7 +48,7 @@ jobs:
4848
- name: Check if code_checks and audit_service_tags have completed successfully
4949
id: check_workflow
5050
run: |
51-
WORKFLOWS=("code_checks.yml" "audit_service_tags.yml" "check_codeowners.yml")
51+
WORKFLOWS=("code_checks.yml" "audit_service_tags.yml" "check_codeowners.yml" "ready_for_review.yml")
5252
ALL_COMPLETED=true
5353
5454
for WORKFLOW in "${WORKFLOWS[@]}"; do

0 commit comments

Comments
 (0)