mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-10 07:38:04 -05:00
- Move `autogpt/tests/vcr_cassettes` submodule to `forge/tests/vcr_cassettes` - Remove not needed markers from `pyproject.toml`: `"requires_openai_api_key", "requires_huggingface_api_key"` - Update relevant GitHub workflows Moved relevant tests from `autogpt/tests` to appropiate directories: - Component tests to their respective component dirs - `autogpt/tests/unit/test_web_search.py` → `forge/components/web/test_search.py` - `autogpt/tests/unit/test_git_commands.py` → `forge/components/git_operations/test_git_operations.py` - `autogpt/tests/unit/test_file_operations.py` → `forge/components/file_manager/test_file_manager.py` - `autogpt/tests/integration/test_image_gen.py` → `forge/components/image_gen/test_image_gen.py` - `autogpt/tests/integration/test_web_selenium.py` → `forge/components/web/test_selenium.py` - `autogpt/tests/integration/test_execute_code.py` → `forge/components/code_executor/test_code_executor.py` - `autogpt/tests/unit/test_s3_file_storage.py` → `forge/file_storage/test_s3_file_storage.py` - `autogpt/tests/unit/test_gcs_file_storage.py` → `forge/file_storage/test_gcs_file_storage.py` - `autogpt/tests/unit/test_local_file_storage.py` → `forge/file_storage/test_local_file_storage.py` - `autogpt/tests/unit/test_json.py` → `forge/json/test_parsing.py` - `autogpt/tests/unit/test_logs.py` → `forge/logging/test_utils.py` - `autogpt/tests/unit/test_url_validation.py` → `forge/utils/test_url_validator.py` - `autogpt/tests/unit/test_text_file_parsers.py` → `forge/utils/test_file_operations.py` - (Re)moved dependencies from `autogpt/pyproject.toml` that were only used in these test files. Also: - Added `load_env_vars` fixture to `forge/conftest.py` - Fixed a type error in `forge/components/web/test_search.py` - Merged `autogpt/.gitattributes` into root `.gitattributes` --------- Co-authored-by: Reinier van der Leer <pwuts@agpt.co>
67 lines
2.0 KiB
YAML
67 lines
2.0 KiB
YAML
name: "Pull Request auto-label"
|
|
|
|
on:
|
|
# So that PRs touching the same files as the push are updated
|
|
push:
|
|
branches: [ master, development, release-* ]
|
|
paths-ignore:
|
|
- 'forge/tests/vcr_cassettes'
|
|
- 'benchmark/reports/**'
|
|
# So that the `dirtyLabel` is removed if conflicts are resolve
|
|
# We recommend `pull_request_target` so that github secrets are available.
|
|
# In `pull_request` we wouldn't be able to change labels of fork PRs
|
|
pull_request_target:
|
|
types: [ opened, synchronize ]
|
|
|
|
concurrency:
|
|
group: ${{ format('pr-label-{0}', github.event.pull_request.number || github.sha) }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
conflicts:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
steps:
|
|
- name: Update PRs with conflict labels
|
|
uses: eps1lon/actions-label-merge-conflict@releases/2.x
|
|
with:
|
|
dirtyLabel: "conflicts"
|
|
#removeOnDirtyLabel: "PR: ready to ship"
|
|
repoToken: "${{ secrets.GITHUB_TOKEN }}"
|
|
commentOnDirty: "This pull request has conflicts with the base branch, please resolve those so we can evaluate the pull request."
|
|
commentOnClean: "Conflicts have been resolved! 🎉 A maintainer will review the pull request shortly."
|
|
|
|
size:
|
|
if: ${{ github.event_name == 'pull_request_target' }}
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: codelytv/pr-size-labeler@v1
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
xs_label: 'size/xs'
|
|
xs_max_size: 2
|
|
s_label: 'size/s'
|
|
s_max_size: 10
|
|
m_label: 'size/m'
|
|
m_max_size: 100
|
|
l_label: 'size/l'
|
|
l_max_size: 500
|
|
xl_label: 'size/xl'
|
|
message_if_xl:
|
|
|
|
scope:
|
|
if: ${{ github.event_name == 'pull_request_target' }}
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/labeler@v5
|
|
with:
|
|
sync-labels: true
|