File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
# Labels need to match with the ones in `labeler.yaml`!
34
34
only-labels : waiting-for-user
35
- days-before-stale : 7
35
+ days-before-stale : 60
36
+ days-before-close : 7
36
37
stale-issue-message : >
37
38
This issue is stale because it has been waiting for your feedback for more than 60 days.
38
39
The Apache Logging Services community values every submitted issue, but without additional information from you,
Original file line number Diff line number Diff line change @@ -45,15 +45,19 @@ jobs:
45
45
46
46
steps :
47
47
48
+ - name : Print user type
49
+ env :
50
+ ISSUE_USER_TYPE : ${{ env.issue_user_type }}
51
+ COMMENT_USER_TYPE : ${{ env.comment_user_type }}
52
+ run : |
53
+ echo "Issue created by: " $ISSUE_USER_TYPE
54
+ echo "Comment created by:" $COMMENT_USER_TYPE
55
+
48
56
# The `waiting-for-maintainer` label needs to match with the one in `close-stale.yaml`!
49
57
- name : Add `waiting-for-maintainer` label
50
58
if : github.event_type == 'issues' && env.issue_user_type == 'user' || env.comment_user_type == 'user'
51
59
env :
52
60
ISSUE : ${{ github.event.issue.html_url }}
53
61
GH_TOKEN : ${{ github.token }}
54
- ISSUE_USER_TYPE : ${{ env.issue_user_type }}
55
- COMMENT_USER_TYPE : ${{ env.comment_user_type }}
56
62
run : |
57
- echo "Issue created by: " $ISSUE_USER_TYPE
58
- echo "Comment created by:" $COMMENT_USER_TYPE
59
63
gh issue edit $ISSUE --add-label 'waiting-for-maintainer' --remove-label 'waiting-for-user'
You can’t perform that action at this time.
0 commit comments