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 6f45b47 commit 9d7d7d9Copy full SHA for 9d7d7d9
.github/workflows/ci.yaml
@@ -5,7 +5,7 @@ on:
5
branches:
6
- "master"
7
pull_request:
8
-
+ types: [opened, synchronize, edited]
9
concurrency:
10
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11
cancel-in-progress: true
@@ -22,6 +22,9 @@ jobs:
22
name: Pre-build checks
23
runs-on: ubuntu-22.04
24
timeout-minutes: 30
25
+ if: |
26
+ github.event.action != 'edited' ||
27
+ contains(tolower(github.event.pull_request.body), 'changelog')
28
env:
29
BOLTDIR: bolts
30
strategy:
0 commit comments