Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Axorax committed Jan 11, 2025
1 parent c920063 commit a7ec176
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/renew-categories.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a7ec176

Please sign in to comment.