-
Notifications
You must be signed in to change notification settings - Fork 30
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 base branch and set stable branch (#341)
Co-authored-by: Karl Higley <[email protected]>
- Loading branch information
1 parent
b722bd6
commit b150e23
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 |