Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Flamis <flamisz@gmail.com>2021-03-18 22:56:55 +0300
committerGitHub <noreply@github.com>2021-03-18 22:56:55 +0300
commita7cd9b671e56a9d79835771f76bab505980fbdf0 (patch)
tree126206e6309ef669a8351c3c66c9ab37675b3140 /.github
parentf8bb64aee18b3a30bd948a44672c940501116db9 (diff)
workflows for handling inactive prs (#17354)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/follow-up-reviews.yml20
-rw-r--r--.github/workflows/inactive-prs.yaml21
2 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/follow-up-reviews.yml b/.github/workflows/follow-up-reviews.yml
new file mode 100644
index 0000000000..6413bad191
--- /dev/null
+++ b/.github/workflows/follow-up-reviews.yml
@@ -0,0 +1,20 @@
+name: 'Follow up reviews'
+on:
+ schedule:
+ - cron: '30 1 * * *'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v3
+ with:
+ debug-only: true
+ start-date: '2021-03-01T00:00:00Z'
+ days-before-pr-stale: 7
+ days-before-pr-close: -1
+ only-pr-labels: 'Needs Review'
+ days-before-issue-stale: -1
+ days-before-issue-close: -1
+ stale-pr-message: 'This issue is in "needs review" but there has been no activity for 7 days. ping @tsteur @sgiehl @diosmosis @flamisz'
+ stale-pr-label: 'Stale'
diff --git a/.github/workflows/inactive-prs.yaml b/.github/workflows/inactive-prs.yaml
new file mode 100644
index 0000000000..456ddeac90
--- /dev/null
+++ b/.github/workflows/inactive-prs.yaml
@@ -0,0 +1,21 @@
+name: 'Handle inactive PRs'
+on:
+ schedule:
+ - cron: '30 1 * * *'
+
+jobs:
+ stale:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/stale@v3
+ with:
+ debug-only: true
+ start-date: '2021-03-01T00:00:00Z'
+ days-before-pr-stale: 14
+ days-before-pr-close: 42
+ days-before-issue-stale: -1
+ days-before-issue-close: -1
+ exempt-pr-labels: 'Do not close'
+ stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.'
+ stale-pr-label: 'Stale'
+ close-pr-message: 'Thank you for this proposed pull request. Because it was last updated more than one month ago, it is our policy to close pull requests opened for a long time without updates. If you would like to continue work on the pull request, please simply ping us to have it re-opened (after you have pushed a new commit). We hope you understand this and we look forward to seeing an update from you on this pull request or another one! Thanks.'