Skip to content

Commit 57e250f

Browse files
committed
fix: stale issue/pr message
Signed-off-by: jmeridth <jmeridth@gmail.com>
1 parent 4757597 commit 57e250f

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

.github/workflows/stale.yml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
1-
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
2-
#
3-
# You can adjust the behavior by modifying this file.
4-
# For more information, see:
5-
# https://github.com/actions/stale
61
name: Mark stale issues and pull requests
72

83
on:
94
schedule:
10-
- cron: '0 12 * * *'
5+
- cron: "0 12 * * *"
116

127
jobs:
138
stale:
14-
159
runs-on: ubuntu-latest
1610
permissions:
1711
issues: write
1812
pull-requests: write
1913

2014
steps:
21-
- uses: actions/stale@f7176fd3007623b69d27091f9b9d4ab7995f0a06 # v5
22-
with:
23-
repo-token: ${{ secrets.GITHUB_TOKEN }}
24-
stale-issue-message: 'Stale issue message'
25-
stale-pr-message: 'Stale pull request message'
26-
stale-issue-label: 'no-issue-activity'
27-
stale-pr-label: 'no-pr-activity'
15+
- uses: actions/stale@f7176fd3007623b69d27091f9b9d4ab7995f0a06 # v5
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
stale-issue-message: >
19+
This issue has been automatically marked as stale because it has not
20+
had recent activity. It will be closed if no further activity occurs.
21+
Thank you for your contributions.
22+
stale-pr-message: >
23+
This pull request has been automatically marked as stale because it has not
24+
had recent activity. It will be closed if no further activity occurs.
25+
Thank you for your contributions.

0 commit comments

Comments
 (0)