-
Notifications
You must be signed in to change notification settings - Fork 904
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into x/fix-queries
- Loading branch information
Showing
403 changed files
with
48,898 additions
and
17,240 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "🐛 Bug Report" | ||
description: "Submit a bug report to help us improve" | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "📜 Description" | ||
placeholder: "A clear and concise description of what the bug is." | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: "👟 Reproduction steps" | ||
placeholder: "1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error" | ||
|
||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "👀 Have you searched previous issues to see if this has been raised before?" | ||
options: | ||
- label: "I checked and didn't find similar issue" | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Have Question? | ||
url: https://discord.com/invite/JTSBGRZrzj | ||
about: Join Official Discord server |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: 🚀 Feature | ||
description: "Submit a proposal for a new feature" | ||
title: "[Feature]: " | ||
labels: ["enhancement"] | ||
body: | ||
- type: textarea | ||
id: feature-description | ||
validations: | ||
required: true | ||
attributes: | ||
label: "🔖 Feature description" | ||
placeholder: "A clear and concise description of what the feature is." | ||
- type: textarea | ||
id: pitch | ||
attributes: | ||
label: "🎤 Why is this feature needed ?" | ||
placeholder: "Please explain why this feature should be implemented and how it would be used. Add examples, if applicable." | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: "✌️ How do you aim to achieve this?" | ||
placeholder: "A clear and concise description of what you want to happen." | ||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "👀 Have you searched issues and PRs to see if this feature request has been raised before?" | ||
options: | ||
- label: "I checked and didn't find similar issue" | ||
required: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: "🛠️ Refactor" | ||
description: "Submit a bug report to help us improve" | ||
title: "[Refactor]: " | ||
labels: ["refactor"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "📜 Description" | ||
placeholder: "A clear and concise description of what should be refactored." | ||
|
||
- type: textarea | ||
id: relevant-files | ||
attributes: | ||
label: "👟 Relevant files" | ||
placeholder: "1. `agents-api/Dockerfile` needs to change | ||
2. `integrations/**/*.py` files need to be reformatted" |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Generate OpenAPI code | ||
run-name: ${{ github.actor }} is generating openapi code | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'typespec/**' | ||
push: | ||
paths: | ||
- 'typespec/**' | ||
|
||
jobs: | ||
Typecheck: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 'latest' | ||
cache: npm | ||
cache-dependency-path: 'typespec/package-lock.json' | ||
|
||
- name: Install libboost | ||
run: sudo apt-get install -y libboost-all-dev | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd agents-api | ||
poetry config virtualenvs.in-project true | ||
|
||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: agents-api/.venv | ||
key: ${{ runner.os }}-agents-api-poetry-${{ hashFiles('agents-api/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-agents-api-poetry- | ||
|
||
- name: Install dependencies | ||
run: | | ||
cd agents-api | ||
poetry install | ||
|
||
- name: Generate openapi code | ||
run: | | ||
bash scripts/generate_openapi_code.sh | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Lint integrations-service | ||
run-name: ${{ github.actor }} is linting the code | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'integrations-service/**' | ||
push: | ||
paths: | ||
- 'integrations-service/**' | ||
|
||
jobs: | ||
Lint-And-Format: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd integrations-service | ||
poetry config virtualenvs.in-project true | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: integrations-service/.venv | ||
key: ${{ runner.os }}-integrations-service-poetry-${{ hashFiles('integrations-service/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-integrations-service-poetry- | ||
- name: Install dependencies | ||
run: | | ||
cd integrations-service | ||
poetry install | ||
- name: Lint and format | ||
run: | | ||
cd integrations-service | ||
poetry run poe format | ||
poetry run poe lint | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "refactor: Lint integrations-service (CI)" | ||
branch: ${{ github.head_ref }} | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} |
This file contains 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
Oops, something went wrong.