Skip to content

Commit

Permalink
Merge pull request Azure-Samples#140 from Azure-Samples/tonybaloney-p…
Browse files Browse the repository at this point in the history
…atch-1

Add automation for bicep reviews
  • Loading branch information
pauldotyu authored Apr 19, 2024
2 parents 074bae3 + 13e3049 commit dce52c8
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/audit-bicep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Validate AZD template
on:
push:
branches:
- main
paths:
- "infra/**"
pull_request:
branches:
- main
paths:
- "infra/**"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run Microsoft Security DevOps Analysis
uses: microsoft/security-devops-action@preview
id: msdo
continue-on-error: true
with:
tools: templateanalyzer

- name: Upload alerts to Security tab
uses: github/codeql-action/upload-sarif@v3
if: github.repository_owner == 'Azure-Samples'
with:
sarif_file: ${{ steps.msdo.outputs.sarifFile }}

0 comments on commit dce52c8

Please sign in to comment.