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 8656531 commit d7cbb51Copy full SHA for d7cbb51
README.md
@@ -16,7 +16,7 @@ You can use the built-in ${{ secrets.GITHUB_TOKEN }} variable for this.
16
## Outputs
17
18
### `issues`
19
-The output of this is an Array of numbers, corresponding to the issue numbers that were closed via commits.
+The output of this is a JSON Array of numbers, corresponding to the issue numbers that were closed via commits.
20
21
## Example usages
22
src/index.js
@@ -46,7 +46,7 @@ async function run() {
46
}
47
48
49
- core.setOutput("issues", issues);
+ core.setOutput("issues", JSON.stringify(issues));
50
51
52
try {
0 commit comments