vibed up a sweet halifax theme #327
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: ci | |
| on: | |
| push: | |
| branches: ["**", "!main"] | |
| jobs: | |
| ci: | |
| name: ci | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Generate an agent token | |
| id: generate-token | |
| uses: actions/create-github-app-token@v2 | |
| with: | |
| app-id: ${{ secrets.KAL_APP_ID }} | |
| private-key: ${{ secrets.KAL_PRIVATE_KEY }} | |
| - uses: actions/checkout@v4 | |
| - uses: dagger/dagger-for-github@8.0.0 | |
| - name: Check | |
| run: dagger call check --github-token GH_TOKEN --model claude-sonnet-4-0 --commit $GITHUB_SHA | |
| env: | |
| DAGGER_CLOUD_TOKEN: ${{ secrets.DAGGER_CLOUD_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| GH_TOKEN: ${{ steps.generate-token.outputs.token }} |