There was an error while loading. Please reload this page.
1 parent 89f27dc commit e7b0166Copy full SHA for e7b0166
1 file changed
.github/workflows/test-pull-request.yml
@@ -4,12 +4,19 @@ on:
4
pull_request:
5
branches:
6
- main
7
+ types:
8
+ - opened
9
+ - synchronize
10
+ - reopened
11
+ - ready_for_review # Draftを解除したとき
12
permissions:
13
contents: read
14
15
jobs:
16
test:
17
runs-on: ubuntu-latest
18
+ # Draftでは動作させない
19
+ if: github.event.pull_request.draft == false
20
env:
21
GRADLE_OPTS: '-Dorg.gradle.daemon=false'
22
steps:
0 commit comments