-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow manual checkout for perf and size workflows (#1678)
- Loading branch information
1 parent
45152ee
commit 04e0de0
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,12 @@ name: PerformanceCheck | |
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
BRANCH: | ||
description: Branch to checkout | ||
required: false | ||
default: 'main' | ||
type: string | ||
# Don't run on every merge to main, because many merges | ||
# may not even be vm related, but infra, or GH Actions | ||
pull_request: | ||
|
@@ -28,6 +34,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ inputs.BRANCH }} | ||
|
||
- uses: marceloprado/[email protected] | ||
id: did-change | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters