-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add e2e pre label check and modify trigger for e2e
Signed-off-by: Anna Jung (VMware) <antheaj@vmware.com>
- Loading branch information
Anna Jung (VMware)
committed
Aug 3, 2023
1 parent
06c0769
commit 1389995
Showing
2 changed files
with
26 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: E2E Test Pre Label Check | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- apps/** | ||
- common/** | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
label_check: | ||
if: ${{ github.event.label.name == 'ok-to-test' }} | ||
name: label-check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "Pull request contains label ok-to-test" |