This commit is contained in:
Axorax
2025-01-13 13:47:03 +06:00
parent d0bff6a1a0
commit 22c6ff3d3b
9 changed files with 1077 additions and 256 deletions

27
.github/workflows/Update main file.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Update main file
on:
workflow_dispatch:
jobs:
run-node-script:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Run command
run: node index.js --all
- name: Commit and push changes
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "update" || echo "No changes to commit"
git push