-
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 another actions to require label check
Signed-off-by: Anna Jung (VMware) <antheaj@vmware.com>
- Loading branch information
Anna Jung (VMware)
committed
Aug 3, 2023
1 parent
1389995
commit f4146cc
Showing
2 changed files
with
18 additions
and
2 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 Require Label Check | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- apps/** | ||
- common/** | ||
|
||
jobs: | ||
require_label_check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: mheap/github-action-required-labels@v5 | ||
with: | ||
mode: exactly | ||
count: 1 | ||
labels: "ok-to-test" |