diff --git a/.github/workflows/argilla/build-push-dev-frontend-docker.yml b/.github/workflows/argilla_build-push-dev-frontend-docker.yml similarity index 100% rename from .github/workflows/argilla/build-push-dev-frontend-docker.yml rename to .github/workflows/argilla_build-push-dev-frontend-docker.yml diff --git a/.github/workflows/argilla/build-python-package.yml b/.github/workflows/argilla_build-python-package.yml similarity index 100% rename from .github/workflows/argilla/build-python-package.yml rename to .github/workflows/argilla_build-python-package.yml diff --git a/.github/workflows/argilla/check-repo-files.yml b/.github/workflows/argilla_check-repo-files.yml similarity index 100% rename from .github/workflows/argilla/check-repo-files.yml rename to .github/workflows/argilla_check-repo-files.yml diff --git a/.github/workflows/argilla/deploy-environment.yml b/.github/workflows/argilla_deploy-environment.yml similarity index 100% rename from .github/workflows/argilla/deploy-environment.yml rename to .github/workflows/argilla_deploy-environment.yml diff --git a/.github/workflows/argilla/end2end-examples.yml b/.github/workflows/argilla_end2end-examples.yml similarity index 98% rename from .github/workflows/argilla/end2end-examples.yml rename to .github/workflows/argilla_end2end-examples.yml index 115386a09f..c7ed66ea46 100644 --- a/.github/workflows/argilla/end2end-examples.yml +++ b/.github/workflows/argilla_end2end-examples.yml @@ -24,7 +24,7 @@ env: jobs: # Runs depending on the result from the check-repo-files.yml call-check-repo-files: - uses: ./.github/workflows/argilla/check-repo-files.yml + uses: ./.github/workflows/argilla_check-repo-files.yml end2end-examples: name: end2end notebook examples, FeedbackDataset for text-classification diff --git a/.github/workflows/argilla/run-python-tests.yml b/.github/workflows/argilla_run-python-tests.yml similarity index 100% rename from .github/workflows/argilla/run-python-tests.yml rename to .github/workflows/argilla_run-python-tests.yml diff --git a/.github/workflows/teardown-pr-environemnts.yml b/.github/workflows/argilla_teardown-all-pr-environemnts.yml similarity index 96% rename from .github/workflows/teardown-pr-environemnts.yml rename to .github/workflows/argilla_teardown-all-pr-environemnts.yml index 9c32a9311a..4be1cf10fb 100644 --- a/.github/workflows/teardown-pr-environemnts.yml +++ b/.github/workflows/argilla_teardown-all-pr-environemnts.yml @@ -1,4 +1,4 @@ -name: Close Pull Request +name: Teardown all the PR environments on: schedule: diff --git a/.github/workflows/teardown-pr-environment.yml b/.github/workflows/argilla_teardown-pr-environment.yml similarity index 100% rename from .github/workflows/teardown-pr-environment.yml rename to .github/workflows/argilla_teardown-pr-environment.yml diff --git a/.github/workflows/argilla-workflow.yml b/.github/workflows/argilla_workflow.yml similarity index 93% rename from .github/workflows/argilla-workflow.yml rename to .github/workflows/argilla_workflow.yml index 6d11b48ff6..777a7f7bae 100644 --- a/.github/workflows/argilla-workflow.yml +++ b/.github/workflows/argilla_workflow.yml @@ -34,7 +34,7 @@ jobs: check_repo_files: name: Check source changes if: ${{ !github.event.pull_request.draft }} - uses: ./.github/workflows/argilla/check-repo-files.yml + uses: ./.github/workflows/argilla_check-repo-files.yml deployable_check: name: Check if must build & deploy from environment @@ -52,7 +52,7 @@ jobs: run_unit_tests: name: Run unit tests - uses: ./.github/workflows/argilla/run-python-tests.yml + uses: ./.github/workflows/argilla_run-python-tests.yml needs: check_repo_files if: needs.check_repo_files.outputs.pythonChanges == 'true' with: @@ -71,7 +71,7 @@ jobs: runsOn: extended-runner name: Run end2end tests - uses: ./.github/workflows/argilla/end2end-examples.yml + uses: ./.github/workflows/argilla_end2end-examples.yml needs: check_repo_files if: needs.check_repo_files.outputs.end2endChanges == 'true' with: @@ -82,7 +82,7 @@ jobs: run_integration_tests: name: Run integration tests - uses: ./.github/workflows/argilla/run-python-tests.yml + uses: ./.github/workflows/argilla_run-python-tests.yml needs: - check_repo_files - run_unit_tests @@ -138,7 +138,7 @@ jobs: build_python_package: name: Build Argilla python package - uses: ./.github/workflows/argilla/build-python-package.yml + uses: ./.github/workflows/argilla_build-python-package.yml needs: - run_unit_tests - run_integration_tests @@ -148,7 +148,7 @@ jobs: build_quickstart_for_develop_docker_image: name: Build Quickstart For Develop docker image - uses: ./.github/workflows/argilla/build-push-dev-frontend-docker.yml + uses: ./.github/workflows/argilla_build-push-dev-frontend-docker.yml needs: deployable_check if: needs.deployable_check.outputs.isDeployable == 'true' with: @@ -161,7 +161,7 @@ jobs: deploy_environment: name: Deploy branch environment - uses: ./.github/workflows/argilla/deploy-environment.yml + uses: ./.github/workflows/argilla_deploy-environment.yml needs: build_quickstart_for_develop_docker_image if: | !cancelled() &&