Skip to content

Commit 3e6d35b

Browse files
authored
feat(output): print output parameters (#458)
* ✨ print output parameters * 📝 add output table * ⚗️ try output parameters * ⚗️ stringify output * ⚗️ try test output * 🔥 remove test output * 💚 build and lint code * 🔥 remove output test * 🔒 fix vulnerabilities * 🎨 renaming staled variables * 🎨 build code * 📝 update contributing commands
1 parent 1648064 commit 3e6d35b

File tree

7 files changed

+1924
-1932
lines changed

7 files changed

+1924
-1932
lines changed

.github/workflows/test.yml

+3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v2
2121
- uses: ./
22+
id: stale
2223
with:
2324
stale-issue-message: 'This issue is stale'
2425
stale-pr-message: 'This PR is stale'
2526
debug-only: true
27+
- name: print outputs
28+
run: echo ${{ join(steps.stale.outputs.*, ',') }}

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ $ npm test
2121
Run the tests and display only the first failing tests :heavy_check_mark:
2222

2323
```bash
24-
$ npm test:only-errors
24+
$ npm run test:only-errors
2525
```
2626

2727
Run the tests with the watch mode :heavy_check_mark:
2828

2929
```bash
30-
$ npm test:watch
30+
$ npm run test:watch
3131
```
3232

3333
Run the linter and fix (almost) every issue for you :heavy_check_mark:
3434

3535
```bash
36-
$ npm lint:all:fix
36+
$ npm run lint:all:fix
3737
```
3838

3939
# Before creating a PR
@@ -43,7 +43,7 @@ $ npm lint:all:fix
4343
Build, lint, package and test everything.
4444

4545
```bash
46-
$ npm all
46+
$ npm run all
4747
```
4848

4949
# Release

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The default configuration will:
1010

1111
## All options
1212

13-
### List of options
13+
### List of input options
1414

1515
Every argument is optional.
1616

@@ -61,6 +61,13 @@ Every argument is optional.
6161
| [exempt-all-pr-assignees](#exempt-all-pr-assignees) | Override [exempt-all-assignees](#exempt-all-assignees) for PRs only | |
6262
| [enable-statistics](#enable-statistics) | Display statistics in the logs | `true` |
6363

64+
### List of output options
65+
66+
| Output | Description |
67+
| ----------------- | -------------------------------------------- |
68+
| staled-issues-prs | List of all staled issues and pull requests. |
69+
| closed-issues-prs | List of all closed issues and pull requests. |
70+
6471
### Detailed options
6572

6673
#### repo-token

action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,11 @@ inputs:
168168
description: 'Display some statistics at the end regarding the stale workflow (only when the logs are enabled).'
169169
default: 'true'
170170
required: false
171+
outputs:
172+
closed-issues-prs:
173+
description: 'List of all closed issues and pull requests.'
174+
staled-issues-prs:
175+
description: 'List of all staled issues and pull requests.'
171176
runs:
172177
using: 'node12'
173178
main: 'dist/index.js'

dist/index.js

+1,858-1,921
Large diffs are not rendered by default.

package-lock.json

+30-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@ import * as core from '@actions/core';
22
import {IssuesProcessor} from './classes/issues-processor';
33
import {isValidDate} from './functions/dates/is-valid-date';
44
import {IIssuesProcessorOptions} from './interfaces/issues-processor-options';
5+
import {Issue} from './classes/issue';
56

67
async function _run(): Promise<void> {
78
try {
89
const args = _getAndValidateArgs();
910

10-
await new IssuesProcessor(args).processIssues();
11+
const issueProcessor: IssuesProcessor = new IssuesProcessor(args);
12+
await issueProcessor.processIssues();
13+
14+
await processOutput(
15+
issueProcessor.closedIssues,
16+
issueProcessor.staleIssues
17+
);
1118
} catch (error) {
1219
core.error(error);
1320
core.setFailed(error.message);
@@ -103,6 +110,14 @@ function _getAndValidateArgs(): IIssuesProcessorOptions {
103110
return args;
104111
}
105112

113+
async function processOutput(
114+
staledIssues: Issue[],
115+
closedIssues: Issue[]
116+
): Promise<void> {
117+
core.setOutput('staled-issues-prs', JSON.stringify(staledIssues));
118+
core.setOutput('closed-issues-prs', JSON.stringify(closedIssues));
119+
}
120+
106121
function _toOptionalBoolean(
107122
argumentName: Readonly<string>
108123
): boolean | undefined {

0 commit comments

Comments
 (0)