From f53ae33edcb16da34bc8579a92276b40cc8d3cc5 Mon Sep 17 00:00:00 2001 From: Matthew Gleich Date: Mon, 12 Apr 2021 15:52:36 -0400 Subject: [PATCH 1/4] feat: add matthew domain Signed-off-by: Matthew Gleich --- domains/matthew.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 domains/matthew.json diff --git a/domains/matthew.json b/domains/matthew.json new file mode 100644 index 000000000..7909c2f1e --- /dev/null +++ b/domains/matthew.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "Matt-Gleich", + "email": "email@mattglei.ch", + "twitter": "MattGleich" + }, + "repo": "https://github.com/Matt-Gleich/site-v2", + "record": { + "URL": "https://mattglei.ch" + } +} From e7925a98bd5ae28e0bc4603b60d4f2b10c0e3d13 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 13 Apr 2021 13:54:00 +0530 Subject: [PATCH 2/4] Adds stale bot --- .github/workflows/stale.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 000000000..d82af495f --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,17 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + days-before-stale: 30 + days-before-close: 20 + stale-issue-message: 'This issue has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it' + stale-pr-message: 'This pull request has been marked as stale due to inactivity and will be closed. Comment anything on this PR to prevent it' From 1e00056012e5e66394fe53176bd2952993ce9a88 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 13 Apr 2021 13:56:22 +0530 Subject: [PATCH 3/4] Update stale.yml --- .github/workflows/stale.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d82af495f..996fe97e1 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -2,7 +2,7 @@ name: Mark stale issues and pull requests on: schedule: - - cron: "30 1 * * *" + - cron: "30 14 * * *" jobs: stale: From 6ed992a6414a615360be3b8da07f0689183f3030 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 13 Apr 2021 20:14:15 +0530 Subject: [PATCH 4/4] Update stale.yml --- .github/workflows/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 996fe97e1..f750eb678 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -1,6 +1,8 @@ -name: Mark stale issues and pull requests +name: StaleBOT on: + workflow_dispatch: + name: 'Force cleanup' schedule: - cron: "30 14 * * *"