From f53ae33edcb16da34bc8579a92276b40cc8d3cc5 Mon Sep 17 00:00:00 2001 From: Matthew Gleich Date: Mon, 12 Apr 2021 15:52:36 -0400 Subject: [PATCH 1/9] 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 bfeef9e79a61409ac15f6ea1343ef89c1aaccf30 Mon Sep 17 00:00:00 2001 From: Jason Antwi-Appah Date: Mon, 12 Apr 2021 20:57:18 -0500 Subject: [PATCH 2/9] Create json.json --- domains/json.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domains/json.json diff --git a/domains/json.json b/domains/json.json new file mode 100644 index 000000000..a406cd7f4 --- /dev/null +++ b/domains/json.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "jasonappah", + "email": "isadev@jasonaa.me", + "twitter": "jasonaa_" + }, + "record": { + "URL": "https://jasonaa.me/" + } +} From 9a25a303063239831e0980555b239d8df0af1e2b Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Mon, 12 Apr 2021 20:37:55 -0700 Subject: [PATCH 3/9] Create rohan.json --- domains/rohan.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 domains/rohan.json diff --git a/domains/rohan.json b/domains/rohan.json new file mode 100644 index 000000000..9d07fa2eb --- /dev/null +++ b/domains/rohan.json @@ -0,0 +1,11 @@ +{ + "description": "Rohan's devlog and portfolio", + "repo": "https://github.com/rohan-bansal", + "owner": { + "username": "Rohan-Bansal", + "email": "rohan@rbansal.dev" + }, + "record": { + "CNAME": "rohan-bansal.github.io" + } +} From ace2af019c1c93a1a78be60f53c59f62a9df7a1b Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Mon, 12 Apr 2021 20:40:07 -0700 Subject: [PATCH 4/9] Update rohan.json --- domains/rohan.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/rohan.json b/domains/rohan.json index 9d07fa2eb..63b5914ce 100644 --- a/domains/rohan.json +++ b/domains/rohan.json @@ -6,6 +6,6 @@ "email": "rohan@rbansal.dev" }, "record": { - "CNAME": "rohan-bansal.github.io" + "CNAME": "rbansal.dev" } } From ab0efccfff2c779f05d9d6724a2ebc580adf0c8a Mon Sep 17 00:00:00 2001 From: Yuto Nishida Date: Mon, 12 Apr 2021 21:20:10 -0700 Subject: [PATCH 5/9] Create yuto.json --- domains/yuto.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 domains/yuto.json diff --git a/domains/yuto.json b/domains/yuto.json new file mode 100644 index 000000000..f5aa2bd11 --- /dev/null +++ b/domains/yuto.json @@ -0,0 +1,10 @@ +{ + "owner": { + "username": "starptr", + "email": "yuto@berkeley.edu" + }, + "description": "Personal website", + "record": { + "URL": "https://yart.me" + } +} From 743da03ed8697fec843e12a7d0b6d3c2375b047e Mon Sep 17 00:00:00 2001 From: Rohan Bansal Date: Mon, 12 Apr 2021 21:51:11 -0700 Subject: [PATCH 6/9] Accidentally used CNAME instead of URL --- domains/rohan.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/rohan.json b/domains/rohan.json index 63b5914ce..832a60dac 100644 --- a/domains/rohan.json +++ b/domains/rohan.json @@ -6,6 +6,6 @@ "email": "rohan@rbansal.dev" }, "record": { - "CNAME": "rbansal.dev" + "URL": "https://rbansal.dev" } } From e7925a98bd5ae28e0bc4603b60d4f2b10c0e3d13 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 13 Apr 2021 13:54:00 +0530 Subject: [PATCH 7/9] 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 8/9] 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 9/9] 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 * * *"