Collect Dependencies #15
This file contains hidden or 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: Collect Dependencies | |
| on: | |
| schedule: | |
| - cron: '0 4 * * *' # daily at 04:00 UTC | |
| workflow_dispatch: # allow manual trigger | |
| permissions: | |
| contents: write | |
| jobs: | |
| collect: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v3 | |
| with: | |
| version: 9 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Run collector | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.COLLECTOR_GITHUB_TOKEN }} | |
| MIGA_API_TOKEN: ${{ secrets.MIGA_API_TOKEN }} | |
| run: pnpm collect | |
| - name: Commit updated deps.json | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add data/deps.json | |
| git diff --staged --quiet || git commit -m "chore: update deps.json $(date -u +%Y-%m-%d)" | |
| git push |