mirror of
https://github.com/partofmyid/register.git
synced 2026-06-05 10:36:50 +07:00
remove dictionary
This commit is contained in:
parent
887d07b1a9
commit
18d26e0a05
5 changed files with 0 additions and 60 deletions
47
.github/workflows/db.yml
vendored
47
.github/workflows/db.yml
vendored
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue