Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
permission_handler
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
songyanzhi
permission_handler
Commits
a5a3b096
Unverified
Commit
a5a3b096
authored
Jul 17, 2023
by
Maurits van Beusekom
Committed by
GitHub
Jul 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update no-response.yaml
parent
74ffdfbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletions
+23
-1
.github/workflows/no-response.yaml
+23
-1
No files found.
.github/workflows/no-response.yaml
View file @
a5a3b096
...
...
@@ -18,9 +18,31 @@ jobs:
stale
:
runs-on
:
ubuntu-latest
steps
:
# At Baseflow, we mark issues with the `status: needs more info` label when more information is
# required to be able to solve an issue. When nobody (either original poster or other community
# members) respond to the issue within 14 days the issue will be closed.
#
# To automate this process we utilize the [stale](https://github.com/actions/stale) GitHub action.
# However the [stale](https://github.com/actions/stale) action requires an issue to be marked specifically
# as "stale" before it will consider an issue to be closed. Therefore we utilize the following
# configuration:
# 1. Set the `stale-issue-label` parameter to `status: needs more info`. This will inform the stale action that all
# issues marked with this particular label to be stale (note that Baseflow manually adds this label after initial triaging).
# 2. Set the `days-before-stale` parameter to `-1`. This will prevent the [stale](https://github.com/actions/stale) action
# from automatically marking issues as being "stale". As mentioned in step 1, at Baseflow we want to manually
# triage the issue and mark it to require more information.
# 3. Set the `close-issue-label` parameter to `status: needs more info` to make sure the label persists even after this
# issue is closed. This will make sure the label is automatically removed when the issue is re-opened (most likely
# this happend because someone added more information).
# 4. Set the `days-before-close` parameter to `14` to indicate after how many days, since marking the issue with
# the `status: needs more info` label, the issue should be closed automatically.
# 5. Set the `close-issue-message` parameter with a text that will be placed as a comment to the respective issue that
# is closed to explain why the issue was closed.
-
uses
:
actions/stale@v8
with
:
any-of-labels
:
'
status:
needs
more
info'
stale-issue-label
:
'
status:
needs
more
info'
days-before-stale
:
-1
close-issue-label
:
'
status:
needs
more
info'
close-issue-message
:
>
Without additional information, we are unfortunately not able to resolve this issue.
Therefore, we reluctantly closed this issue for now.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment