Skip to content

Commit

Permalink
Merge branch 'main' into 1364-add-image-support-to-vertexau-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
falonso81 committed Feb 5, 2025
2 parents 75c10b7 + b27928c commit c43f2f9
Show file tree
Hide file tree
Showing 731 changed files with 116,780 additions and 12,405 deletions.
16 changes: 14 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,21 @@ root = true

[*]
charset = utf-8
indent_style = space
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 80
trim_trailing_whitespace = true

[*.{js,jsx,ts,tsx}]
quote_type = single

[*.py]
indent_size = 4
indent_style = space
quote_type = single

[{Makefile,go.mod,go.sum,*.go,.gitmodules}]
indent_size = 4
indent_style = tab
29 changes: 29 additions & 0 deletions .github/ISSUE_TEMPLATE/dev-ui-feature.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Dev UI feature request
about: Use this to request a feature in the Dev UI
title: "[Dev UI]"
labels: devui
assignees: ''

---

## Overview
A clear and concise description of what the feature is.

### User goal(s)
What is the user trying to accomplish with this feature?

## Requirements
### Acceptance Criteria
- 1
- 2
- 3

### Designs

Inlined screenshots

## Notes

Are there any open questions? Anything else

105 changes: 105 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# Add 'root' label to any root file changes
# Quotation marks are required for the leading asterisk
root:
- changed-files:
- any-glob-to-any-file: '*'

docs:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'
- '**/*.rst'
- 'LICENSE'
- 'docs-go/**'
- 'docs/**'
- 'py/engdocs/**'

go:
- changed-files:
- any-glob-to-any-file:
- '**/*.go'
- '**/go.mod'
- '**/go.sum'
- 'go/**'

python:
- changed-files:
- any-glob-to-any-file:
- '**/*.py'
- '**/pyproject.toml'
- 'py/**'

js:
- changed-files:
- any-glob-to-any-file:
- '**/*.js'
- '**/*.jsx'
- '**/*.ts'
- '**/*.tsx'
- '**/package.json'
- 'js/**'

tooling:
- changed-files:
- any-glob-to-any-file:
- 'genkit-tools/**'

config:
- changed-files:
- any-glob-to-any-file:
- '**/*.toml'
- '**/*.yaml'
- '**/*.yml'
- '**/.editorconfig'
- '**/.github/**'
- '**/.gitignore'
- '**/.npmignore'
- '**/.npmrc'
- '**/.prettierignore'
- '**/package.json'
- '**/tsconfig.*.json'
- '**/tsconfig.json'
- '**/typedoc.json'

sample:
- changed-files:
- any-glob-to-any-file:
- 'samples/**'

dotprompt:
- changed-files:
- any-glob-to-any-file:
- '**/dotprompt/**'

handlebarz:
- changed-files:
- any-glob-to-any-file:
- '**/handlebarz/**'

# Automatically add labels to any PR also based on branch naming conventions.
build:
- head-branch: [^.*/build/.*, build]

chore:
- head-branch: [^.*/chore/.*, chore]

ci:
- head-branch: [^.*/ci/.*, ci]

feature:
- head-branch: [^.*/feat/.*, feature]

fix:
- head-branch: [^.*/fix/.*, fix]

perf:
- head-branch: [^.*/perf/.*, perf]

refactor:
- head-branch: [^.*/refactor/.*, refactor]

style:
- head-branch: [^.*/style/.*, style]

test:
- head-branch: [^.*/test/.*, test]
6 changes: 3 additions & 3 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v3
- name: Set up node v21
- name: Set up node v20
uses: actions/setup-node@v4
with:
node-version: 21.x
cache: 'pnpm'
node-version: 20.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Run build script
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump-cli-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: Bump CLI Version
name: Bump and Tag CLI Version

on:
workflow_dispatch:
Expand Down
195 changes: 0 additions & 195 deletions .github/workflows/bump-js-plugins-version.yml

This file was deleted.

Loading

0 comments on commit c43f2f9

Please sign in to comment.