We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5606889 commit 459e8e7Copy full SHA for 459e8e7
.github/workflows/nextjs.yml
@@ -5,6 +5,9 @@ on:
5
push:
6
branches:
7
- "**" # Lint and build on all branches
8
+ pull_request:
9
+ types:
10
+ - closed
11
12
jobs:
13
# Linting Job
@@ -49,7 +52,7 @@ jobs:
49
52
audit:
50
53
name: Audit Dependencies
51
54
runs-on: ubuntu-latest
- if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release')
55
+ if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release') && github.event.pull_request.merged == true
56
steps:
57
- name: Checkout code
58
uses: actions/checkout@v3
0 commit comments