-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Workflows to check the base branch and set stable branch (#1080)
Co-authored-by: Karl Higley <kmhigley@gmail.com>
- Loading branch information
1 parent
306d7ec
commit d8133b8
Showing
2 changed files
with
19 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: Require Development Base Branch | ||
|
||
on: | ||
pull_request: | ||
types: [synchronize, opened, reopened, labeled, unlabeled] | ||
|
||
jobs: | ||
check: | ||
uses: NVIDIA-Merlin/.github/.github/workflows/check-base-branch.yml@main |
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,10 @@ | ||
name: Set Stable Branch | ||
|
||
on: | ||
workflow_dispatch: | ||
release: | ||
types: [published, deleted] | ||
|
||
jobs: | ||
set-stable-branch: | ||
uses: NVIDIA-Merlin/.github/.github/workflows/set-stable-branch.yaml@main |