Bump Azure.Security.KeyVault.Secrets from 4.5.0 to 4.7.0 #599
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
name: build and test on pull | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build with dotnet | |
run: dotnet build --configuration Release | |
test: | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Run Unit Tests | |
run: dotnet test --verbosity normal --configuration Release | |
automerge: | |
needs: [build,test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: get actor | |
run: echo "${{github.actor}}" | |
- name: automerge | |
uses: "pascalgn/automerge-action@ccae530ae13b6af67a7a2009c266fe925844e658" | |
if: github.actor == 'dependabot-preview[bot]' | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
MERGE_LABELS: "" |