Rename x402-mcp-monitor to mcp-agent-validator, add mcp-apps-validator #74
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: Update README on Commit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| update-readme: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install Dependencies | |
| run: | | |
| cd .github | |
| npm install | |
| - name: Run Node.js Script | |
| run: | | |
| node index.mjs | |
| - name: Commit and Push Changes | |
| run: | | |
| git config user.email "action@github.com" | |
| git config user.name "GitHub Action" | |
| git add . | |
| git commit -m "Update README" || echo "No changes to commit" | |
| git push |