Skip to content

✨ add curl noise project #8

✨ add curl noise project

✨ add curl noise project #8

Workflow file for this run

name: Update README Projects
on:
push:
paths:
- 'projects-data.json'
branches:
- main
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Generate README
run: node scripts/generate-readme.js
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add README.md
git diff --staged --quiet || git commit -m "docs: update projects table"
git push