From 70f5e96546446aae6a1273059d2368a3aa426e4f Mon Sep 17 00:00:00 2001 From: masseo <125076223+matte-oss@users.noreply.github.com> Date: Sat, 9 Nov 2024 20:43:35 +0100 Subject: [PATCH 01/34] Create mail.masseo.json --- domains/mail.masseo.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 domains/mail.masseo.json diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json new file mode 100644 index 000000000..b4cd34de6 --- /dev/null +++ b/domains/mail.masseo.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "matte-oss", + "email": "7sz8jlw6h@mozmail.com" + }, + "record": { + "TXT": [ + "mail.masseo.zoho-verification=zb53346473.zmverify.zoho.eu" + ] + } +} From 67c96b28fa1598580d21559ab58d7dd4dae72a7a Mon Sep 17 00:00:00 2001 From: abiapp789 Date: Sun, 10 Nov 2024 15:45:23 +0530 Subject: [PATCH 02/34] Update abiapp789.json --- domains/abiapp789.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/abiapp789.json b/domains/abiapp789.json index 8d7a8b8bc..4472f5420 100644 --- a/domains/abiapp789.json +++ b/domains/abiapp789.json @@ -5,6 +5,6 @@ "email": "abiapp2024@gmail.com" }, "record": { - "CNAME": "abiapp789.github.io" + "CNAME": "trytodownloadme.rf.gd" } } From b4da40866883733e7dc42ba6d45a69ac8e0c9503 Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 16:02:50 +0500 Subject: [PATCH 03/34] Create _vercel.jake.json --- domains/_vercel.jake.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 domains/_vercel.jake.json diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json new file mode 100644 index 000000000..d38b4ed5b --- /dev/null +++ b/domains/_vercel.jake.json @@ -0,0 +1,8 @@ +{ + "owner": { + "username": "xzrci" + }, + "record": { + "TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"] + } +} From 07db14b0c6089375b380fad5af14302ae6614a87 Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 16:08:00 +0500 Subject: [PATCH 04/34] Update jake.json --- domains/jake.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/domains/jake.json b/domains/jake.json index 091329342..e0f07046a 100644 --- a/domains/jake.json +++ b/domains/jake.json @@ -1,11 +1,8 @@ { - "description": "Jake's personal website and blog.", - "repo": "https://github.com/j-eo/j-eo.github.io", "owner": { - "username": "j-eo", - "email": "website-contact.nem2h@silomails.com" + "username": "xzrci" }, "record": { - "CNAME": "jakeanto.pages.dev" + "CNAME": "xzrci.vercel.app" } } From 67d62a7f0c075377813532f4908de3c4fbe5e795 Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 16:20:40 +0500 Subject: [PATCH 05/34] Update _vercel.jake.json --- domains/_vercel.jake.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json index d38b4ed5b..79e94eafe 100644 --- a/domains/_vercel.jake.json +++ b/domains/_vercel.jake.json @@ -1,6 +1,7 @@ { "owner": { - "username": "xzrci" + "username": "xzrci", + "email": "xzrci@mail.ru" }, "record": { "TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"] From a5eefd52e6c911d1e7a082d3706fa27f15ac6d9c Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 16:22:09 +0500 Subject: [PATCH 06/34] Update jake.json --- domains/jake.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/domains/jake.json b/domains/jake.json index e0f07046a..92bfa7038 100644 --- a/domains/jake.json +++ b/domains/jake.json @@ -1,6 +1,7 @@ { "owner": { - "username": "xzrci" + "username": "xzrci", + "email": "xzrci@mail.ru" }, "record": { "CNAME": "xzrci.vercel.app" From 83486961b75e67a1e50536ecad5ac06dc7a8cec0 Mon Sep 17 00:00:00 2001 From: cgd <70825723+cupglassDEV@users.noreply.github.com> Date: Sun, 10 Nov 2024 18:56:25 +0700 Subject: [PATCH 07/34] Create formatter.yml --- .github/workflows/formatter.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/formatter.yml diff --git a/.github/workflows/formatter.yml b/.github/workflows/formatter.yml new file mode 100644 index 000000000..3310cebfc --- /dev/null +++ b/.github/workflows/formatter.yml @@ -0,0 +1,22 @@ +name: Formatter +on: + push: + branches: + - main +jobs: + format: + name: "Format" + runs-on: ubuntu-latest + steps: + - uses: actions/setup-node@v4 + with: + node-version: 20.x + - name: Run prettier + # Use -y, like npm install -y + run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 + - name: Commit + run: | + git config --global user.name 'is-a.dev' + git config --global user.email 'actions@github.com' + git commit -am "Format domains" + git push From a2eb1fbce740210e358c7de883b6f498ed356b52 Mon Sep 17 00:00:00 2001 From: masseo <125076223+matte-oss@users.noreply.github.com> Date: Sun, 10 Nov 2024 12:56:49 +0100 Subject: [PATCH 08/34] Create masseo.json --- domains/masseo.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 domains/masseo.json diff --git a/domains/masseo.json b/domains/masseo.json new file mode 100644 index 000000000..c47cca342 --- /dev/null +++ b/domains/masseo.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "matte-oss", + "email": "7sz8jlw6h@mozmail.co" + }, + "record": { + "CNAME": "hashnode.network" + } +} From 017bc03999266d215a07ba026ffd219bf12d54dd Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:07:24 +0800 Subject: [PATCH 09/34] Update and rename formatter.yml to prettier.yml --- .github/workflows/formatter.yml | 22 ---------------------- .github/workflows/prettier.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 22 deletions(-) delete mode 100644 .github/workflows/formatter.yml create mode 100644 .github/workflows/prettier.yml diff --git a/.github/workflows/formatter.yml b/.github/workflows/formatter.yml deleted file mode 100644 index 3310cebfc..000000000 --- a/.github/workflows/formatter.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Formatter -on: - push: - branches: - - main -jobs: - format: - name: "Format" - runs-on: ubuntu-latest - steps: - - uses: actions/setup-node@v4 - with: - node-version: 20.x - - name: Run prettier - # Use -y, like npm install -y - run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - - name: Commit - run: | - git config --global user.name 'is-a.dev' - git config --global user.email 'actions@github.com' - git commit -am "Format domains" - git push diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml new file mode 100644 index 000000000..8f494707a --- /dev/null +++ b/.github/workflows/prettier.yml @@ -0,0 +1,27 @@ +name: Prettier + +on: + push: + branches: [main] + paths: + - "domains/*" + +jobs: + format: + name: Format + runs-on: ubuntu-latest + + steps: + - uses: actions/setup-node@v4 + with: + node-version: 20.x + + - name: Run Prettier + run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 + + - name: Commit + run: | + git config --global user.email "actions@github.com" + git config --global user.name "GitHub Actions" + git commit -am "Format domains" + git push From 7cdbdbc37e4ca857d220dde60c6c924e22684ff8 Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 17:10:11 +0500 Subject: [PATCH 10/34] Update _vercel.jake.json --- domains/_vercel.jake.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/_vercel.jake.json b/domains/_vercel.jake.json index 79e94eafe..08c660da0 100644 --- a/domains/_vercel.jake.json +++ b/domains/_vercel.jake.json @@ -1,7 +1,7 @@ { "owner": { "username": "xzrci", - "email": "xzrci@mail.ru" + "email": "" }, "record": { "TXT": ["vc-domain-verify=jake.is-a.dev,1075ab07de85fa87e8cd"] From a14a35f3090141ddfe7aeac008b7397b6ef2f5e2 Mon Sep 17 00:00:00 2001 From: cgd <70825723+cupglassDEV@users.noreply.github.com> Date: Sun, 10 Nov 2024 19:11:13 +0700 Subject: [PATCH 11/34] use github action push to whatever --- .github/workflows/prettier.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 8f494707a..eb9442bcf 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -20,8 +20,12 @@ jobs: run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - name: Commit - run: | - git config --global user.email "actions@github.com" - git config --global user.name "GitHub Actions" - git commit -am "Format domains" - git push + uses: cpina/github-action-push-to-another-repository@main + with: + source-directory: "register" + destination-github-username: is-a-dev + destination-repository-name: register + user-email: actions@github.com + user-name: "GitHub Actions" + env: + API_TOKEN_GITHUB: ${{ secrets.BOT }} From 98d0f8c95907249285df72fe20abfd59360bc260 Mon Sep 17 00:00:00 2001 From: xzrci Date: Sun, 10 Nov 2024 17:11:13 +0500 Subject: [PATCH 12/34] Update jake.json --- domains/jake.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/domains/jake.json b/domains/jake.json index 92bfa7038..2e5c97792 100644 --- a/domains/jake.json +++ b/domains/jake.json @@ -1,7 +1,7 @@ { "owner": { "username": "xzrci", - "email": "xzrci@mail.ru" + "email": "" }, "record": { "CNAME": "xzrci.vercel.app" From 07be06fa111b2d9ef7de6c392c357b875cb6e1b5 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:13:35 +0800 Subject: [PATCH 13/34] Update raw-api.yml --- .github/workflows/raw-api.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/raw-api.yml b/.github/workflows/raw-api.yml index 35680dc72..4ba2bd85d 100644 --- a/.github/workflows/raw-api.yml +++ b/.github/workflows/raw-api.yml @@ -40,7 +40,7 @@ jobs: source-directory: "raw-api" destination-github-username: is-a-dev destination-repository-name: raw-api - user-email: actions@github.com + user-email: "actions@github.com" user-name: "GitHub Actions" env: API_TOKEN_GITHUB: ${{ secrets.BOT }} From 670af4f62efa88a1a48ca55125f807d2628731f2 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:13:56 +0800 Subject: [PATCH 14/34] Update prettier.yml --- .github/workflows/prettier.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index eb9442bcf..bd00c134d 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -25,7 +25,7 @@ jobs: source-directory: "register" destination-github-username: is-a-dev destination-repository-name: register - user-email: actions@github.com + user-email: "actions@github.com" user-name: "GitHub Actions" env: API_TOKEN_GITHUB: ${{ secrets.BOT }} From 0a8af169daab9d3d8051bec293570daabc8911fa Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:15:22 +0800 Subject: [PATCH 15/34] Update prettier.yml --- .github/workflows/prettier.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index bd00c134d..f555d457e 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -5,6 +5,7 @@ on: branches: [main] paths: - "domains/*" + - ".github/workflows/prettier.yml" jobs: format: From db52535770fe53073c06a5f3219f009c04b600f2 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:17:01 +0800 Subject: [PATCH 16/34] Update prettier.yml --- .github/workflows/prettier.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index f555d457e..4379c24c7 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -17,8 +17,10 @@ jobs: with: node-version: 20.x + - run: ls + - name: Run Prettier - run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 + run: npx -y prettier domains/*.json -w --tab-width 2 --print-width 120 - name: Commit uses: cpina/github-action-push-to-another-repository@main From 4df3d9afd29ccc216888295ae64eb0e5ee22b283 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:18:22 +0800 Subject: [PATCH 17/34] add checkout --- .github/workflows/prettier.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 4379c24c7..f67a561c4 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -13,14 +13,14 @@ jobs: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: 20.x - - run: ls - - name: Run Prettier - run: npx -y prettier domains/*.json -w --tab-width 2 --print-width 120 + run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - name: Commit uses: cpina/github-action-push-to-another-repository@main From 64e5cfe428df758ad432ba1464db6aa82916dfdd Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:19:21 +0800 Subject: [PATCH 18/34] Update prettier.yml --- .github/workflows/prettier.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index f67a561c4..3f0f2eafc 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -25,7 +25,7 @@ jobs: - name: Commit uses: cpina/github-action-push-to-another-repository@main with: - source-directory: "register" + source-directory: "." destination-github-username: is-a-dev destination-repository-name: register user-email: "actions@github.com" From e4209a6e565afa1ce07482a23e1c88cc5d2e1880 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:31:36 +0800 Subject: [PATCH 19/34] Update prettier.yml --- .github/workflows/prettier.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 3f0f2eafc..5b7c696d1 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -28,7 +28,7 @@ jobs: source-directory: "." destination-github-username: is-a-dev destination-repository-name: register - user-email: "actions@github.com" - user-name: "GitHub Actions" + user-email: "bot@is-a.dev" + user-name: "is-a-dev-bot" env: API_TOKEN_GITHUB: ${{ secrets.BOT }} From 1760d7f82e8b0bff8475790e65af10a8a57bc10d Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:38:37 +0800 Subject: [PATCH 20/34] Update prettier.yml --- .github/workflows/prettier.yml | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 5b7c696d1..bd79468c8 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -22,13 +22,31 @@ jobs: - name: Run Prettier run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - - name: Commit - uses: cpina/github-action-push-to-another-repository@main - with: - source-directory: "." - destination-github-username: is-a-dev - destination-repository-name: register - user-email: "bot@is-a.dev" - user-name: "is-a-dev-bot" + - name: Create and switch to new branch + run: | + BRANCH_NAME="prettier-$(date +%s)" + git checkout -b "$BRANCH_NAME" + + - name: Commit changes + run: | + git config --local user.email "bot@is-a.dev" + git config --local user.name "is-a-dev-bot" + git add . + git commit -m "chore: apply Prettier formatting" + + - name: Push changes to new branch env: API_TOKEN_GITHUB: ${{ secrets.BOT }} + run: | + git push -u origin "$BRANCH_NAME" + + - name: Create Pull Request + id: create_pr + uses: peter-evans/create-pull-request@v5 + with: + token: ${{ secrets.BOT }} + head: "$BRANCH_NAME" + base: main + title: "$BRANCH_NAME" + body: "Generated from https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}." + auto-merge: true From ad908df09465bbf8e24a8209c65aae0543ca3aa9 Mon Sep 17 00:00:00 2001 From: Lungu Stefan-Gabriel Date: Sun, 10 Nov 2024 14:39:19 +0200 Subject: [PATCH 21/34] Update lungustefan.json --- domains/lungustefan.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domains/lungustefan.json b/domains/lungustefan.json index d2e3d12b9..b9a1eff55 100644 --- a/domains/lungustefan.json +++ b/domains/lungustefan.json @@ -1,7 +1,7 @@ { "owner": { - "username": "InterJadify", - "email": "", + "username": "lungustefan", + "email": "hi@lungustefan.ro", "discord": "753179409682399332", "OWL": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiYWxnIjoiUlNBLU9BRVAiLCJraWQiOiJaa1VsRmRqVThiUEstLXVVM2JJR09PVHFYYVFFS1ZINFVXOW53MTR6WTJnIn0.ZerVkVuk5RE7iT8ymXVcKhUkihyAdAbufacrfxq1u7NKQ4Hd0_PbY5FYDAR5uuVd-sCe7fOztiSKV7f9q1OI4HNGDqQxiaWqzom_lQsrIMW-gWUDsBG4Vo8gsq0wrw2th797i-JfsXy2crWaeXlX7X1kROV5KZhGwlSusnUrMp3jlN-uUM3b4hxUyEs3grbh4BiZ9CWShm-kLUs572OBpMigXh3aO0DcUl-BdYdlpSEdRQe8zwylJbFnetxG3qBaMcciGwImixY6V4qaqFwH18isGjDknsHB2WvXM8ekMZmSxgMyRtv1VRSbC22grzMeBazgWoj3x65KU3Z8C7KNmw.w-d8n6WalLAvFcWHqlRkcw.W7GJTwpNRB9pUehhfBXVlkOR1knSNSjvJWeDViV6u2h6AyBdwyaAyILEQzC5ishw0f209VgdyaCqocC7nJp_ZjWjAfcyw0ICLiUXM37Sn3Q.xQOo4RjPMh6dBbWiF1Polw" }, From 040cd6f5bc56e673e1063e350917cd56b02b79f6 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:41:36 +0800 Subject: [PATCH 22/34] Update prettier.yml --- .github/workflows/prettier.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index bd79468c8..c2634b0d1 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -22,25 +22,30 @@ jobs: - name: Run Prettier run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - - name: Create and switch to new branch + - name: Create branch run: | BRANCH_NAME="prettier-$(date +%s)" + echo "Generated branch name: $BRANCH_NAME" + if [ -z "$BRANCH_NAME" ]; then + echo "Error: Branch name is empty." + exit 1 + fi git checkout -b "$BRANCH_NAME" - - name: Commit changes + - name: Commit run: | git config --local user.email "bot@is-a.dev" git config --local user.name "is-a-dev-bot" git add . - git commit -m "chore: apply Prettier formatting" + git commit -m "chore: apply formatting" - - name: Push changes to new branch + - name: Push env: API_TOKEN_GITHUB: ${{ secrets.BOT }} run: | git push -u origin "$BRANCH_NAME" - - name: Create Pull Request + - name: Create pull request id: create_pr uses: peter-evans/create-pull-request@v5 with: From cef7f280bfcf5362a290b60a5db7c2514ae1e355 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:45:29 +0800 Subject: [PATCH 23/34] Update prettier.yml --- .github/workflows/prettier.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index c2634b0d1..b5f8c496c 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -25,11 +25,8 @@ jobs: - name: Create branch run: | BRANCH_NAME="prettier-$(date +%s)" - echo "Generated branch name: $BRANCH_NAME" - if [ -z "$BRANCH_NAME" ]; then - echo "Error: Branch name is empty." - exit 1 - fi + echo "Generated branch: $BRANCH_NAME" + echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV git checkout -b "$BRANCH_NAME" - name: Commit From db4d3a80fcb8cde84bf753b910e6578582a7ff43 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:53:05 +0800 Subject: [PATCH 24/34] Update prettier.yml --- .github/workflows/prettier.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index b5f8c496c..fce9694dc 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -44,11 +44,18 @@ jobs: - name: Create pull request id: create_pr - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.BOT }} - head: "$BRANCH_NAME" + branch: "$BRANCH_NAME" base: main title: "$BRANCH_NAME" body: "Generated from https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}." - auto-merge: true + + - name: Merge pull request + if: steps.create_pr.outputs.pull-request-operation == "created" + uses: peter-evans/enable-pull-request-automerge@v3 + with: + token: ${{ secrets.BOT }} + pull-request-number: ${{ steps.create_pr.outputs.pull-request-number }} + merge-method: squash From c14f375941c5d30b9b8101ab02112690186c0148 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:53:47 +0800 Subject: [PATCH 25/34] Update prettier.yml --- .github/workflows/prettier.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index fce9694dc..dddd372ea 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -53,7 +53,7 @@ jobs: body: "Generated from https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}." - name: Merge pull request - if: steps.create_pr.outputs.pull-request-operation == "created" + if: steps.create_pr.outputs.pull-request-operation == 'created' uses: peter-evans/enable-pull-request-automerge@v3 with: token: ${{ secrets.BOT }} From 6b83aa151cddcdb16ecb2c105fc7cf286e5eef3f Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:59:17 +0800 Subject: [PATCH 26/34] Update prettier.yml --- .github/workflows/prettier.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index dddd372ea..2358a963f 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -47,6 +47,7 @@ jobs: uses: peter-evans/create-pull-request@v7 with: token: ${{ secrets.BOT }} + author: is-a-dev-bot branch: "$BRANCH_NAME" base: main title: "$BRANCH_NAME" From 90ed139ffaa73176065ea64d6cdca87611d6aec9 Mon Sep 17 00:00:00 2001 From: William Harrison <87287585+wdhdev@users.noreply.github.com> Date: Sun, 10 Nov 2024 21:00:37 +0800 Subject: [PATCH 27/34] Delete .github/workflows/prettier.yml --- .github/workflows/prettier.yml | 62 ---------------------------------- 1 file changed, 62 deletions(-) delete mode 100644 .github/workflows/prettier.yml diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml deleted file mode 100644 index 2358a963f..000000000 --- a/.github/workflows/prettier.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Prettier - -on: - push: - branches: [main] - paths: - - "domains/*" - - ".github/workflows/prettier.yml" - -jobs: - format: - name: Format - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-node@v4 - with: - node-version: 20.x - - - name: Run Prettier - run: npx -y prettier ./domains -w --tab-width 2 --print-width 120 - - - name: Create branch - run: | - BRANCH_NAME="prettier-$(date +%s)" - echo "Generated branch: $BRANCH_NAME" - echo "BRANCH_NAME=$BRANCH_NAME" >> $GITHUB_ENV - git checkout -b "$BRANCH_NAME" - - - name: Commit - run: | - git config --local user.email "bot@is-a.dev" - git config --local user.name "is-a-dev-bot" - git add . - git commit -m "chore: apply formatting" - - - name: Push - env: - API_TOKEN_GITHUB: ${{ secrets.BOT }} - run: | - git push -u origin "$BRANCH_NAME" - - - name: Create pull request - id: create_pr - uses: peter-evans/create-pull-request@v7 - with: - token: ${{ secrets.BOT }} - author: is-a-dev-bot - branch: "$BRANCH_NAME" - base: main - title: "$BRANCH_NAME" - body: "Generated from https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}." - - - name: Merge pull request - if: steps.create_pr.outputs.pull-request-operation == 'created' - uses: peter-evans/enable-pull-request-automerge@v3 - with: - token: ${{ secrets.BOT }} - pull-request-number: ${{ steps.create_pr.outputs.pull-request-number }} - merge-method: squash From f1b5993ba71c35f3d5ceb943e92ed37c07644d6a Mon Sep 17 00:00:00 2001 From: masseo <125076223+matte-oss@users.noreply.github.com> Date: Sun, 10 Nov 2024 14:59:23 +0100 Subject: [PATCH 28/34] Update mail.masseo.json --- domains/mail.masseo.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json index b4cd34de6..7ae148af7 100644 --- a/domains/mail.masseo.json +++ b/domains/mail.masseo.json @@ -4,8 +4,12 @@ "email": "7sz8jlw6h@mozmail.com" }, "record": { - "TXT": [ - "mail.masseo.zoho-verification=zb53346473.zmverify.zoho.eu" - ] + "MX": [ + "mx.zoho.eu", + "mx2.zoho.eu", + "mx3.zoho.eu" + ], + "SPF": "v=spf1 include:zohomail.eu ~all", + "DKIM": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB" } } From 8748e5ce80890c5e90de371b3b146ff0c0e540e1 Mon Sep 17 00:00:00 2001 From: masseo <125076223+matte-oss@users.noreply.github.com> Date: Sun, 10 Nov 2024 15:20:21 +0100 Subject: [PATCH 29/34] Update mail.masseo.json --- domains/mail.masseo.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json index 7ae148af7..ceee2e4b5 100644 --- a/domains/mail.masseo.json +++ b/domains/mail.masseo.json @@ -9,7 +9,9 @@ "mx2.zoho.eu", "mx3.zoho.eu" ], - "SPF": "v=spf1 include:zohomail.eu ~all", + "TXT": [ + "v=spf1 include:zohomail.eu ~all" + ], "DKIM": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB" } } From 67ab9f9408d5c34f22e3121905995f43930d16d1 Mon Sep 17 00:00:00 2001 From: masseo <125076223+matte-oss@users.noreply.github.com> Date: Sun, 10 Nov 2024 15:26:44 +0100 Subject: [PATCH 30/34] Update mail.masseo.json --- domains/mail.masseo.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/domains/mail.masseo.json b/domains/mail.masseo.json index ceee2e4b5..5a42cbbb9 100644 --- a/domains/mail.masseo.json +++ b/domains/mail.masseo.json @@ -10,8 +10,8 @@ "mx3.zoho.eu" ], "TXT": [ - "v=spf1 include:zohomail.eu ~all" - ], - "DKIM": "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB" + "v=spf1 include:zohomail.eu ~all", + "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCBdKJ9pgi76G8kOhX1v4hDt3jros0cBQMLMeKc8L6F8iLBUz78XwP4qRO/1sfdl1vSavi+KsybaNotnLfA2+vA+txPzR/zUEdPWTZhz/Q7iQqo7AuX8hZDY2emDA/0wAkSVAQ1i/KKmSnnR1q6RvJcjPmVCW2gjpw9MOfCwt7PAwIDAQAB" + ] } } From d802e58b2946b2ba81fe81c61717406cd6cbe7b2 Mon Sep 17 00:00:00 2001 From: Prince Prajapati <72757203+NotReallyPrince@users.noreply.github.com> Date: Sun, 10 Nov 2024 20:55:33 +0530 Subject: [PATCH 31/34] Create _vercel.princeprajapati.is-a.dev --- domains/_vercel.princeprajapati.is-a.dev | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 domains/_vercel.princeprajapati.is-a.dev diff --git a/domains/_vercel.princeprajapati.is-a.dev b/domains/_vercel.princeprajapati.is-a.dev new file mode 100644 index 000000000..5c838ece0 --- /dev/null +++ b/domains/_vercel.princeprajapati.is-a.dev @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notreallyprince", + "email": "prince30112001@gmail.com" + }, + "record": { + "TXT": "vc-domain-verify=princeprajapati.is-a.dev,9b919407776e11ecff7a" + } + } From 2cd2143e10133db210d3465bb5dea92f641659e1 Mon Sep 17 00:00:00 2001 From: Prince Prajapati <72757203+NotReallyPrince@users.noreply.github.com> Date: Sun, 10 Nov 2024 21:23:07 +0530 Subject: [PATCH 32/34] Create princeprajapati.json --- domains/princeprajapati.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 domains/princeprajapati.json diff --git a/domains/princeprajapati.json b/domains/princeprajapati.json new file mode 100644 index 000000000..b4eef0e5a --- /dev/null +++ b/domains/princeprajapati.json @@ -0,0 +1,9 @@ +{ + "owner": { + "username": "notreallyprince", + "email": "prince30112001@gmail.com" + }, + "record": { + "CNAME": "princexd.vercel.app" + } + } From 90ac0391a7a4808725423e12a2b821bc5596286d Mon Sep 17 00:00:00 2001 From: Prince Prajapati <72757203+NotReallyPrince@users.noreply.github.com> Date: Sun, 10 Nov 2024 21:26:02 +0530 Subject: [PATCH 33/34] Rename _vercel.princeprajapati.is-a.dev to _vercel.princeprajapati.json --- ...rcel.princeprajapati.is-a.dev => _vercel.princeprajapati.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename domains/{_vercel.princeprajapati.is-a.dev => _vercel.princeprajapati.json} (100%) diff --git a/domains/_vercel.princeprajapati.is-a.dev b/domains/_vercel.princeprajapati.json similarity index 100% rename from domains/_vercel.princeprajapati.is-a.dev rename to domains/_vercel.princeprajapati.json From c978ba4a722b67a481d4775ef9241d44146a72ec Mon Sep 17 00:00:00 2001 From: qxb3 Date: Sun, 10 Nov 2024 23:09:28 +0000 Subject: [PATCH 34/34] add qxb3 subdomain --- domains/qxb3.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 domains/qxb3.json diff --git a/domains/qxb3.json b/domains/qxb3.json new file mode 100644 index 000000000..8f0a5a7eb --- /dev/null +++ b/domains/qxb3.json @@ -0,0 +1,11 @@ +{ + "owner": { + "username": "qxb3", + "email": "qxbthree@gmail.com" + }, + "record": { + "A": [ + "75.2.60.5" + ] + } +}