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.
isDraft
1 parent e37b6b1 commit 257035cCopy full SHA for 257035c
.github/workflows/summarize-impact.yaml
@@ -40,7 +40,7 @@ jobs:
40
--sha "${{ github.event.pull_request.head.sha }}" \
41
--repo "${{ github.event.repository.name }}" \
42
--owner "${{ github.repository_owner }}" \
43
- --isDraft ${{ github.event.pull_request.draft }}
+ ${{ github.event.pull_request.draft && '--isDraft' || '' }}
44
env:
45
# We absolutely need to avoid OOM errors due to certain inherited types from openapi-alps
46
NODE_OPTIONS: "--max-old-space-size=8192"
eng/tools/summarize-impact/src/cli.ts
@@ -61,6 +61,7 @@ export async function main() {
61
isDraft: {
62
type: "boolean",
63
multiple: false,
64
+ default: false,
65
},
66
67
allowPositionals: true,
0 commit comments