-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6829848
commit eb33083
Showing
1 changed file
with
29 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,29 @@ | ||
name: CI | ||
|
||
# Run this workflow every time a commit gets pushed to main | ||
# This triggers the ADO OneBranch CI Pipeline | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
name: Call OneBranch ADO Pipeline (CI) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | ||
with: | ||
egress-policy: audit | ||
|
||
- name: Azure Pipelines Action | ||
uses: Azure/pipelines@354dddefceb0b503a61338ca81e4091eae3bc84f # v1 | ||
with: | ||
azure-devops-project-url: https://sqlclientdrivers.visualstudio.com/mssql-jdbc | ||
azure-pipeline-name: 'MSAL.NET-OneBranch-Release-Official' | ||
azure-pipeline-name: 'mssql-jdbc-Official' | ||
azure-devops-token: ${{ secrets.AZURE_DEVOPS_TOKEN }} |