Update agentic reviewer to antigravity-sdk 0.1.10 #866
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: Auto Add Issues to Tracking boards | |
| on: # yamllint disable-line rule:truthy | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| add-to-project: | |
| name: Add issue to projects | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - name: Generate github-app token | |
| id: app-token | |
| uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 | |
| with: | |
| app-id: ${{ secrets.DEVOPS_APP_ID }} | |
| private-key: ${{ secrets.DEVOPS_APP_PRIVATE_KEY }} | |
| owner: opendatahub-io | |
| repositories: notebooks | |
| permission-organization-projects: write | |
| permission-issues: read # add-to-project reads the triggering issue; no PR permission needed since this workflow only fires on issues: opened | |
| - uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0 | |
| with: | |
| project-url: https://github.com/orgs/opendatahub-io/projects/40 | |
| github-token: ${{ steps.app-token.outputs.token }} | |
| - uses: actions/add-to-project@5afcf98fcd03f1c2f92c3c83f58ae24323cc57fd # v2.0.0 | |
| with: | |
| project-url: https://github.com/orgs/opendatahub-io/projects/45 | |
| github-token: ${{ steps.app-token.outputs.token }} |