Remove multi-block plugin repository prompt documentation file #9
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
| jobs: | ||
| name: Agent Workflow | ||
| on: | ||
| workflow_dispatch: | ||
| agent-job: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '18.x' | ||
| - name: Run agent script | ||
| run: | | ||
| node .github/agents/agent-script.js --from-workflow | ||
| env: | ||
| DRY_RUN: false | ||
| VERBOSE: true | ||
| - name: Upload agent output | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: agent-output | ||
| path: agent-output.json | ||