You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/IntegrationTest.yml
+51-6Lines changed: 51 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,11 @@ on:
22
22
default: false
23
23
required: false
24
24
type: boolean
25
+
is-fork-pr:
26
+
description: "When true, skip URL-based (private/unregistered) packages and post a notification comment instead. Callers should set this to the result of comparing PR head and base repo names."
27
+
default: false
28
+
required: false
29
+
type: boolean
25
30
secrets:
26
31
TAGBOT_PAT:
27
32
description: "GitHub PAT for cloning private repositories via HTTPS."
@@ -38,22 +43,62 @@ jobs:
38
43
os: [ubuntu-latest]
39
44
40
45
steps:
46
+
- name: "Check if private downstream test should be skipped"
0 commit comments