From 27967f0350feba216b775836a0c52dd52f631c2f Mon Sep 17 00:00:00 2001 From: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> Date: Sun, 1 Jun 2025 01:56:58 +0300 Subject: [PATCH] Add Copilot setup workflows for multiple repositories Introduce a reusable GitHub Actions workflow to streamline Copilot setup across various repositories. This includes setting up `uv`, installing Python 3.11, and syncing dependencies. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com> --- .github/workflows/copilot-setup-steps.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/copilot-setup-steps.yml diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml new file mode 100644 index 0000000..9f2187f --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,19 @@ +name: "Copilot Setup Steps" + +on: workflow_dispatch + +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up uv + uses: astral-sh/setup-uv@v6 + with: + enable-cache: true + - run: uv python install 3.11 + - run: uv sync --all-extras --all-groups --frozen