universal-plugin-repo/.github/workflows/update.yml
2026-03-07 12:49:46 +00:00

26 lines
No EOL
615 B
YAML

name: Manifest updater
on:
push:
branches: [ main, testing ]
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: node update.js
- run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add manifest.json manifestnsfw.json images/
git commit -m "Generate manifest" || exit 0
git push