Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fixed triggering of workflows due to labeling of the PR's #28250

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vedpatwardhan I'm not sure about this one.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I think we can remove it from here as well 👍

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure 👍🏻

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
Loading