mirror of
https://github.com/actions/stale.git
synced 2025-12-12 21:17:15 +00:00
🎨 Print outputs (#484)
* 🎨 print outputs * 🎨 add missing identifier * 🎨 capitalize step names
This commit is contained in:
3
.github/workflows/stale.yml
vendored
3
.github/workflows/stale.yml
vendored
@@ -9,8 +9,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@main
|
- uses: actions/stale@main
|
||||||
|
id: stale
|
||||||
with:
|
with:
|
||||||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
|
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days'
|
||||||
days-before-stale: 30
|
days-before-stale: 30
|
||||||
days-before-close: 5
|
days-before-close: 5
|
||||||
exempt-issue-labels: 'blocked,must,should,keep'
|
exempt-issue-labels: 'blocked,must,should,keep'
|
||||||
|
- name: Print outputs
|
||||||
|
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
||||||
|
|||||||
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -24,5 +24,5 @@ jobs:
|
|||||||
stale-issue-message: 'This issue is stale'
|
stale-issue-message: 'This issue is stale'
|
||||||
stale-pr-message: 'This PR is stale'
|
stale-pr-message: 'This PR is stale'
|
||||||
debug-only: true
|
debug-only: true
|
||||||
- name: print outputs
|
- name: Print outputs
|
||||||
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
run: echo ${{ join(steps.stale.outputs.*, ',') }}
|
||||||
|
|||||||
Reference in New Issue
Block a user