Find New Designs #12
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: Find New Designs | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 9 * * 1" # Every Monday at 9 AM | |
| permissions: | |
| contents: read | |
| id-token: write | |
| issues: write | |
| jobs: | |
| find-designs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: false | |
| - uses: anthropics/claude-code-action@v1 | |
| with: | |
| anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| prompt: "/find-designs" | |
| claude_args: "--max-turns 10" |