-
Notifications
You must be signed in to change notification settings - Fork 36
29 lines (27 loc) · 1001 Bytes
/
pr-check.yml
File metadata and controls
29 lines (27 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
name: PR Check
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
merge_group:
workflow_dispatch:
jobs:
check:
permissions: {}
runs-on: ubuntu-latest
steps:
- name: checking for fork
shell: pwsh
run: |
$isFork = "${{ github.event.pull_request.head.repo.fork }}"
if($isFork -eq "true") {
echo "### WARNING: This workflow is disabled for forked repositories. Please follow the [release branch process](https://azure.github.io/Azure-Verified-Modules/contributing/terraform/terraform-contribution-flow/#5-create-a-pull-request-to-the-upstream-repository) if end to end tests are required." >> $env:GITHUB_STEP_SUMMARY
}
run-managed-workflow:
if: github.event.pull_request.head.repo.fork == false
uses: Azure/avm-terraform-governance/.github/workflows/managed-pr-check.yml@main
name: run managed workflow
secrets: inherit
permissions:
id-token: write
contents: read