Skip to content

Commit c7e7088

Browse files
committed
Add reopened and ready_for_review triggers to integration tests workflow
- Add reopened trigger (part of default set) - Add ready_for_review trigger for draft PRs marked ready - Add Checkout step name for consistency
1 parent 41dc96b commit c7e7088

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
push:
66
branches: ["main"]
77
pull_request_target:
8-
types: [opened, synchronize, labeled]
8+
types: [opened, synchronize, reopened, ready_for_review, labeled]
99

1010
env:
1111
CARGO_TERM_COLOR: always
@@ -28,7 +28,8 @@ jobs:
2828
contents: read
2929

3030
steps:
31-
- uses: actions/checkout@v5
31+
- name: Checkout
32+
uses: actions/checkout@v5
3233
with:
3334
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }}
3435

0 commit comments

Comments
 (0)