Skip to content

Commit

Permalink
fix: Fixed triggering of workflows due to labeling of the PR's (#28250
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Sai-Suraj-27 committed Feb 13, 2024
1 parent 280ce0f commit 8dcc33b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/array-api-intelligent-tests-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: array-api-intelligent-tests-pr
on:
pull_request:
types: [ labeled, opened, synchronize, reopened, review_requested ]
types: [opened, synchronize, reopened, review_requested ]

permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerfile-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ "main" ]
pull_request:
types: [labeled, review_requested]
types: [review_requested]
branches: [ "main" ]

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/intelligent-tests-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: intelligent-tests-pr
on:
workflow_dispatch:
pull_request:
types: [labeled, opened, synchronize, reopened, review_requested]
types: [opened, synchronize, reopened, review_requested]

permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docstrings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: test-docstrings
on:
push:
pull_request:
types: [labeled, opened, synchronize, reopened, review_requested]
types: [opened, synchronize, reopened, review_requested]
workflow_dispatch:
jobs:
run-docstring-tests:
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_intelligent_tests_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
print("on:")
print(" workflow_dispatch:")
print(" pull_request:")
print(" types: [ labeled, opened, synchronize, reopened, review_requested ]")
print(" types: [opened, synchronize, reopened, review_requested ]")
print()
print("permissions:")
print(" actions: read")
Expand Down

0 comments on commit 8dcc33b

Please sign in to comment.