Skip to content

Commit 123e629

Browse files
committed
add back changes workflow_dispatch for manual testing
1 parent 3d61641 commit 123e629

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/integration-tests.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
name: Integration Tests
22

33
on:
4+
push:
5+
branches: [main]
6+
tags:
7+
- "v*"
8+
pull_request:
9+
branches: [main]
10+
schedule:
11+
- cron: "0 7 * * *"
412
workflow_dispatch:
513
inputs:
614
pr_number:
715
type: number
8-
required: true
16+
required: false
17+
description: 'PR number (optional, for manual PR testing)'
918
sha:
1019
type: string
11-
required: true
20+
required: false
21+
description: 'SHA to test (optional, for manual PR testing)'
1222

1323
permissions:
1424
contents: read

0 commit comments

Comments
 (0)