-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add shared commit lint check workflow. - Add global.json to control SDK version. Closes #60
- Loading branch information
1 parent
d3e7878
commit 8c8982a
Showing
5 changed files
with
40 additions
and
197 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,19 @@ | ||
name: Best Bets API CI workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- 'hotfix/**' | ||
- 'release/**' | ||
- 'feature/**' | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
|
||
jobs: | ||
ci_remote: | ||
uses: nciocpl/nci.ocpl.api.shared/.github/workflows/[email protected] | ||
with: | ||
api-project: src/NCI.OCPL.Api.BestBets/NCI.OCPL.Api.BestBets.csproj | ||
artifact-name: bestbets |
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: OCPL Configuration Management Standards Check | ||
|
||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
|
||
jobs: | ||
commitlint_remote: | ||
uses: nciocpl/.github/.github/workflows/ocpl_cm_standards_check.yml@workflow/v2 |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
{ | ||
"sdk": { | ||
"rollForward": "latestFeature", | ||
"version": "6.0.0" | ||
} | ||
} |
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,6 @@ | ||
#!/bin/bash | ||
|
||
# Used in CI builds to abstract any API-specific start up steps. | ||
export CGBestBetsIndex__PreviewAliasName=bestbets_v1 | ||
export CGBestBetsIndex__LiveAliasName=bestbets_v1 | ||
dotnet NCI.OCPL.Api.BestBets.dll |