-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (36 loc) · 1.12 KB
/
fleet-analyze.yml
File metadata and controls
40 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Generated by @google/jules-fleet init
# https://github.com/google-labs-code/jules-sdk
name: Fleet Analyze
on:
workflow_dispatch:
inputs:
goal:
description: 'Path to goal file (or blank for all)'
type: string
default: ''
milestone:
description: 'Milestone ID override'
type: string
default: ''
concurrency:
group: fleet-analyze
cancel-in-progress: false
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
contents: read
issues: write
pull-requests: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: npx -y --package=@google/jules-fleet jules-fleet analyze --goal "${{ inputs.goal }}" --milestone "${{ inputs.milestone }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JULES_API_KEY: ${{ secrets.JULES_API_KEY }}
FLEET_APP_ID: ${{ secrets.FLEET_APP_ID }}
FLEET_APP_PRIVATE_KEY_BASE64: ${{ secrets.FLEET_APP_PRIVATE_KEY_BASE64 }}
FLEET_APP_INSTALLATION_ID: ${{ secrets.FLEET_APP_INSTALLATION_ID }}