We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa8fbf commit 6e4d3a5Copy full SHA for 6e4d3a5
.github/workflows/terraform.yaml
@@ -6,6 +6,9 @@ on:
6
- main
7
- master
8
pull_request_target:
9
+ branches:
10
+ - main
11
+ - master
12
types:
13
- opened
14
- edited
@@ -17,13 +20,12 @@ on:
17
20
jobs:
18
21
prTitlecheck:
19
22
name: PR title check
- if: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.base.ref == 'main' }}
23
+ if: ${{ github.event_name == 'pull_request_target' }}
24
uses: ./.github/workflows/pr-title.yaml
25
26
versionPreview:
27
name: Version Preview
- needs: prTitlecheck
- if: ${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref == 'main' }}
28
+ if: ${{ github.event_name == 'pull_request' }}
29
uses: ./.github/workflows/version-preview.yaml
30
31
preCommitCheck:
0 commit comments