diff --git a/.github/DangerFiles/TestOrchestrator.rb b/.github/DangerFiles/TestOrchestrator.rb index 548b1e3cbb..4399d8fa22 100644 --- a/.github/DangerFiles/TestOrchestrator.rb +++ b/.github/DangerFiles/TestOrchestrator.rb @@ -4,7 +4,9 @@ warn("Big PR, try to keep changes smaller if you can.", sticky: true) if git.lines_of_code > 1000 # Redirect contributors to PR to dev. -fail("Please re-submit this PR to the dev branch, we may have already fixed your issue.", sticky: true) if github.branch_for_base != "dev" +# [Test-only] Allow fix-reusable-ui-workflow-missing-input base for fork CI verification +allowed_bases = ["dev", "fix-reusable-ui-workflow-missing-input"] +fail("Please re-submit this PR to the dev branch, we may have already fixed your issue.", sticky: true) unless allowed_bases.include?(github.branch_for_base) # List of Android libraries for testing LIBS = ['SalesforceAnalytics', 'SalesforceSDK', 'SmartStore', 'MobileSync', 'SalesforceHybrid'] diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 7aef81acae..3aa9b25ab5 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -5,7 +5,7 @@ on: # Mitigated by per-job Member Check (see "Check Write Permission" + "Validate Write Permission" steps). # Reference: team Github Actions Tribal Knowledge doc. pull_request_target: # zizmor: ignore[dangerous-triggers] - branches: [dev, master] + branches: [dev, master, fix-reusable-ui-workflow-missing-input] paths-ignore: - '**/*.md' - 'LICENSE'