diff --git a/.github/workflows/db.yml b/.github/workflows/db.yml deleted file mode 100644 index f86216a..0000000 --- a/.github/workflows/db.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: Stats Sync - -on: - workflow_dispatch: - push: - branches: [main] - paths: - - "domains/**" - - "scripts/dict.js" - - ".github/workflows/db.yml" - -permissions: - contents: write - -jobs: - sync: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - with: - token: ${{ secrets.PR_BYPASS_TOKEN }} - fetch-depth: 0 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '18' - - - name: Generate statistics - run: | - rm -f stats/*_error.log - - node scripts/dict.js > stats/dict.json 2>stats/dict_error.log & - ls domains | wc -l > stats/count.txt 2>stats/count_error.log & - wait - - - name: Commit changes - run: | - git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - git config --global user.name "github-actions[bot]" - git add stats - - if [ -n "$(git status --porcelain)" ]; then - git commit -m "[automated] update stats" - git push - fi diff --git a/scripts/dict.js b/scripts/dict.js deleted file mode 100644 index 9c48a8a..0000000 --- a/scripts/dict.js +++ /dev/null @@ -1,12 +0,0 @@ -const fs = require('fs'); - -const dict = fs.readdirSync('./domains').map(f => [ - f.split('.').slice(0, -1).join('.'), - JSON.parse(fs.readFileSync(`./domains/${f}`, 'utf8')).owner.username // owner -]).reduce((v, [s, o]) => { - if (!v[o]) v[o] = []; - v[o].push(s); - return v; -}, {}); - -console.log(JSON.stringify(dict)); diff --git a/stats/count_error.log b/stats/count_error.log deleted file mode 100644 index e69de29..0000000 diff --git a/stats/dict.json b/stats/dict.json deleted file mode 100644 index bdc13cd..0000000 --- a/stats/dict.json +++ /dev/null @@ -1 +0,0 @@ -{"partofmyid":["@"],"ColinLeDev":["_discord.colin","colin"],"CuteDog5695":["_discord.cutedog5695","cutedog5695"],"hanmetaforce":["_discord.hanmetaforce"],"SX-9":["_discord","satr14"],"JustDeveloper1":["_discord.justdeveloper","j","jd","js","just","justdev","justdeveloper","juststudio"],"Roki100":["_discord.roki","roki"],"shadowe1ite":["batman"],"orangci":["c"],"elkhaff":["elkaff"],"jacobrdale":["jacob"],"FWEEaaaa1":["job"],"joestr":["joel"],"Bananalolok":["katz"],"EducatedSuddenBucket":["no-one-is"],"heypxl":["pxl"],"vortexprime24":["rchessauth"],"Stef-00012":["stef","you-are"],"ukriu":["ukriu"]} diff --git a/stats/dict_error.log b/stats/dict_error.log deleted file mode 100644 index e69de29..0000000