40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
name: 'Gemini Scheduled PR Triage 🚀'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '*/15 * * * *' # Runs every 15 minutes
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
audit-prs:
|
|
timeout-minutes: 15
|
|
if: |-
|
|
${{ github.repository == 'google-gemini/gemini-cli' }}
|
|
permissions:
|
|
contents: 'read'
|
|
id-token: 'write'
|
|
issues: 'write'
|
|
pull-requests: 'write'
|
|
runs-on: 'ubuntu-latest'
|
|
outputs:
|
|
prs_needing_comment: '${{ steps.run_triage.outputs.prs_needing_comment }}'
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' # ratchet:actions/checkout@v5
|
|
|
|
- name: 'Generate GitHub App Token'
|
|
id: 'generate_token'
|
|
uses: 'actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b' # ratchet:actions/create-github-app-token@v2
|
|
with:
|
|
app-id: '${{ secrets.APP_ID }}'
|
|
private-key: '${{ secrets.PRIVATE_KEY }}'
|
|
|
|
- name: 'Run PR Triage Script'
|
|
id: 'run_triage'
|
|
shell: 'bash'
|
|
env:
|
|
GITHUB_TOKEN: '${{ steps.generate_token.outputs.token }}'
|
|
GITHUB_REPOSITORY: '${{ github.repository }}'
|
|
run: |-
|
|
./.github/scripts/pr-triage.sh
|