chore(ci): fix yamllint issues (#6112)

This commit is contained in:
Seth Vargo 2025-08-12 23:24:39 -04:00 committed by GitHub
parent 214800cfc6
commit 4074e8e6ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 52 additions and 48 deletions

View File

@ -22,8 +22,8 @@ steps:
id: 'Determine Docker Image Tag' id: 'Determine Docker Image Tag'
entrypoint: 'bash' entrypoint: 'bash'
args: args:
- -c - '-c'
- | - |-
SHELL_TAG_NAME="$TAG_NAME" SHELL_TAG_NAME="$TAG_NAME"
FINAL_TAG="$SHORT_SHA" # Default to SHA FINAL_TAG="$SHORT_SHA" # Default to SHA
if [[ "$$SHELL_TAG_NAME" == *"-nightly"* ]]; then if [[ "$$SHELL_TAG_NAME" == *"-nightly"* ]]; then
@ -44,8 +44,8 @@ steps:
id: 'Build sandbox Docker image' id: 'Build sandbox Docker image'
entrypoint: 'bash' entrypoint: 'bash'
args: args:
- -c - '-c'
- | - |-
export GEMINI_SANDBOX_IMAGE_TAG=$$(cat /workspace/image_tag.txt) export GEMINI_SANDBOX_IMAGE_TAG=$$(cat /workspace/image_tag.txt)
echo "Using Docker image tag for build: $$GEMINI_SANDBOX_IMAGE_TAG" echo "Using Docker image tag for build: $$GEMINI_SANDBOX_IMAGE_TAG"
npm run build:sandbox -- --output-file /workspace/final_image_uri.txt npm run build:sandbox -- --output-file /workspace/final_image_uri.txt
@ -57,8 +57,8 @@ steps:
id: 'Publish sandbox Docker image' id: 'Publish sandbox Docker image'
entrypoint: 'bash' entrypoint: 'bash'
args: args:
- -c - '-c'
- | - |-
set -e set -e
FINAL_IMAGE_URI=$$(cat /workspace/final_image_uri.txt) FINAL_IMAGE_URI=$$(cat /workspace/final_image_uri.txt)
@ -68,7 +68,7 @@ steps:
- 'GEMINI_SANDBOX=$_CONTAINER_TOOL' - 'GEMINI_SANDBOX=$_CONTAINER_TOOL'
options: options:
defaultLogsBucketBehavior: REGIONAL_USER_OWNED_BUCKET defaultLogsBucketBehavior: 'REGIONAL_USER_OWNED_BUCKET'
dynamicSubstitutions: true dynamicSubstitutions: true
substitutions: substitutions:

View File

@ -3,7 +3,7 @@
have_fun: false have_fun: false
code_review: code_review:
disable: false disable: false
comment_severity_threshold: HIGH comment_severity_threshold: 'HIGH'
max_review_comments: -1 max_review_comments: -1
pull_request_opened: pull_request_opened:
help: false help: false

View File

@ -1,8 +1,10 @@
name: Bug Report name: 'Bug Report'
description: Report a bug to help us improve Gemini CLI description: 'Report a bug to help us improve Gemini CLI'
labels: ['kind/bug', 'status/need-triage'] labels:
- 'kind/bug'
- 'status/need-triage'
body: body:
- type: markdown - type: 'markdown'
attributes: attributes:
value: |- value: |-
> [!IMPORTANT] > [!IMPORTANT]
@ -10,26 +12,26 @@ body:
> >
> Please search **[existing issues](https://github.com/google-gemini/gemini-cli/issues)** to see if an issue already exists for the bug you encountered. > Please search **[existing issues](https://github.com/google-gemini/gemini-cli/issues)** to see if an issue already exists for the bug you encountered.
- type: textarea - type: 'textarea'
id: problem id: 'problem'
attributes: attributes:
label: What happened? label: 'What happened?'
description: A clear and concise description of what the bug is. description: 'A clear and concise description of what the bug is.'
validations: validations:
required: true required: true
- type: textarea - type: 'textarea'
id: expected id: 'expected'
attributes: attributes:
label: What did you expect to happen? label: 'What did you expect to happen?'
validations: validations:
required: true required: true
- type: textarea - type: 'textarea'
id: info id: 'info'
attributes: attributes:
label: Client information label: 'Client information'
description: Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (macOS, Windows, Linux). description: 'Please paste the full text from the `/about` command run from Gemini CLI. Also include which platform (macOS, Windows, Linux).'
value: |- value: |-
<details> <details>
@ -42,14 +44,14 @@ body:
validations: validations:
required: true required: true
- type: textarea - type: 'textarea'
id: login-info id: 'login-info'
attributes: attributes:
label: Login information label: 'Login information'
description: Describe how you are logging in (e.g., Google Account, API key). description: 'Describe how you are logging in (e.g., Google Account, API key).'
- type: textarea - type: 'textarea'
id: additional-context id: 'additional-context'
attributes: attributes:
label: Anything else we need to know? label: 'Anything else we need to know?'
description: Add any other context about the problem here. description: 'Add any other context about the problem here.'

View File

@ -1,8 +1,10 @@
name: Feature Request name: 'Feature Request'
description: Suggest an idea for this project description: 'Suggest an idea for this project'
labels: ['kind/enhancement', 'status/need-triage'] labels:
- 'kind/enhancement'
- 'status/need-triage'
body: body:
- type: markdown - type: 'markdown'
attributes: attributes:
value: |- value: |-
> [!IMPORTANT] > [!IMPORTANT]
@ -10,24 +12,24 @@ body:
> >
> Please search **[existing issues](https://github.com/google-gemini/gemini-cli/issues)** to see if a similar feature has already been requested. > Please search **[existing issues](https://github.com/google-gemini/gemini-cli/issues)** to see if a similar feature has already been requested.
- type: textarea - type: 'textarea'
id: feature id: 'feature'
attributes: attributes:
label: What would you like to be added? label: 'What would you like to be added?'
description: A clear and concise description of the enhancement. description: 'A clear and concise description of the enhancement.'
validations: validations:
required: true required: true
- type: textarea - type: 'textarea'
id: rationale id: 'rationale'
attributes: attributes:
label: Why is this needed? label: 'Why is this needed?'
description: A clear and concise description of why this enhancement is needed. description: 'A clear and concise description of why this enhancement is needed.'
validations: validations:
required: true required: true
- type: textarea - type: 'textarea'
id: additional-context id: 'additional-context'
attributes: attributes:
label: Additional context label: 'Additional context'
description: Add any other context or screenshots about the feature request here. description: 'Add any other context or screenshots about the feature request here.'

View File

@ -47,4 +47,4 @@ jobs:
steps: steps:
- name: 'Deploy to GitHub Pages' - name: 'Deploy to GitHub Pages'
id: 'deployment' id: 'deployment'
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # ratchet:actions/deploy-pages@v4 uses: 'actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e' # ratchet:actions/deploy-pages@v4