From eaf3854264227e1efc2ff44e2b4272eddb027c71 Mon Sep 17 00:00:00 2001 From: lkdmttg7 Date: Fri, 1 May 2020 23:47:02 +0530 Subject: [PATCH 1/3] Update close comment --- .github/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index 70032115fc2c..fe51e49e4707 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -15,4 +15,6 @@ markComment: > recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable -closeComment: true +closeComment: > + Please reopen this issue once you commit the changes requested or + make improvements on the code. Thank you for your contributions. From ded0e7890bf13b65a3412aae6f0b71ca446118b5 Mon Sep 17 00:00:00 2001 From: John Law Date: Fri, 1 May 2020 23:50:01 +0200 Subject: [PATCH 2/3] Update stale.yml --- .github/workflows/stale.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1d1d743fa832..8442afaf5a62 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,7 +9,7 @@ jobs: - uses: actions/stale@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Stale issue message' - stale-pr-message: 'Stale pull request message' + stale-issue-message: 'Please reopen this issue once you add more information and updates here. If this is not the case and you need some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the reviewers. Thank you for your contributions!' + stale-pr-message: 'Please reopen this pull request once you commit the changes requested or make improvements on the code. If this is not the case and you need some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the reviewers. Thank you for your contributions!' stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity' From 24af04d8e9e3c03ce81c670327196d8b9cd3b4c4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 2 May 2020 00:13:29 +0200 Subject: [PATCH 3/3] Multiline strings in yaml files https://yaml-multiline.info/ --- .github/workflows/stale.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 8442afaf5a62..4793f54f7af8 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,7 +9,15 @@ jobs: - uses: actions/stale@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Please reopen this issue once you add more information and updates here. If this is not the case and you need some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the reviewers. Thank you for your contributions!' - stale-pr-message: 'Please reopen this pull request once you commit the changes requested or make improvements on the code. If this is not the case and you need some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the reviewers. Thank you for your contributions!' + stale-issue-message: > + Please reopen this issue once you add more information and updates here. + If this is not the case and you need some help, feel free to seek help + from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the + reviewers. Thank you for your contributions! + stale-pr-message: > + Please reopen this pull request once you commit the changes requested + or make improvements on the code. If this is not the case and you need + some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms) + or ping one of the reviewers. Thank you for your contributions! stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity'