This commit is contained in:
Axorax
2025-01-11 17:36:17 +06:00
parent c920063253
commit a7ec1765fe

27
.github/workflows/renew-categories.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Renew categories
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 index.js
run: node index.js
- 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 "Renew specific categories" || echo "No changes to commit"
git push