From b09c1e1bade65841212a9f7ba035d127ca23aeb4 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 04:12:25 +0000 Subject: [PATCH 1/2] Initial plan From 9abad39c0e850a848aaad7b599bf537a6649668a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 13 Aug 2026 04:14:19 +0000 Subject: [PATCH 2/2] Restrict cron conda workflow permissions Co-authored-by: JarryShaw <15666417+JarryShaw@users.noreply.github.com> --- .github/workflows/cron-conda.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/cron-conda.yml b/.github/workflows/cron-conda.yml index 66a815051..8b0e8b7d5 100644 --- a/.github/workflows/cron-conda.yml +++ b/.github/workflows/cron-conda.yml @@ -1,5 +1,8 @@ name: "Conda Update" +permissions: + contents: read + on: schedule: - cron: '0 10 * * 6' # everyday at 10am @@ -10,6 +13,8 @@ jobs: conda-update: name: Update requirements.txt runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/checkout@v7 with: