Group JSON API #557
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Group JSON API | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "15 8 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Generate new data | |
run: npm install && npm run group-data | |
- name: Read manifestIdGroup.txt | |
id: manifestId | |
uses: juliangruber/read-file-action@v1 | |
with: | |
path: ./manifestIdGroup.txt | |
- name: Commit & push changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "[bot::group] manifest ${{ steps.manifestId.outputs.content }}" |