From 4d4c3b5e0919b00509ea7599e6e9221a9746c49b Mon Sep 17 00:00:00 2001 From: Huy Do Date: Mon, 17 Nov 2025 12:57:00 -0800 Subject: [PATCH 1/3] Restore the workflow to update vision repo viable/strict Signed-off-by: Huy Do --- .github/workflows/update-viablestrict.yml | 28 +++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/update-viablestrict.yml diff --git a/.github/workflows/update-viablestrict.yml b/.github/workflows/update-viablestrict.yml new file mode 100644 index 00000000000..0ed71fc8cba --- /dev/null +++ b/.github/workflows/update-viablestrict.yml @@ -0,0 +1,28 @@ +name: Update viable/strict + +on: + schedule: + # Run every 30 minutes at 10 and 40 minute marks + - cron: 10,40 * * * * + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }} + cancel-in-progress: false + +jobs: + do_update_viablestrict: + if: ${{ github.repository_owner == 'pytorch' }} + runs-on: ubuntu-latest + environment: ${{ (github.event_name == 'schedule') && 'update-viable-strict' || '' }} + steps: + - name: Update viable/strict + uses: pytorch/test-infra/.github/actions/update-viablestrict@main + with: + repository: pytorch/vision + stable-branch: viable/strict + requires: '[\"Build Linux\", \"Build M1\", \"Build Macos\", \"Build Windows\", \"Tests\", \"CMake\", \"Lint\", \"Docs\"]' + secret-bot-token: ${{ secrets.UPDATEBOT_TOKEN }} + clickhouse-url: ${{ secrets.CLICKHOUSE_URL }} + clickhouse-username: ${{ secrets.CLICKHOUSE_VIABLESTRICT_USERNAME }} + clickhouse-password: ${{ secrets.CLICKHOUSE_VIABLESTRICT_PASSWORD }} From 77d5882198173e23111b99fe6cf89ebdec57fab6 Mon Sep 17 00:00:00 2001 From: Huy Do Date: Mon, 17 Nov 2025 15:24:32 -0800 Subject: [PATCH 2/3] Remove MacOS and Windows signals Signed-off-by: Huy Do --- .github/workflows/update-viablestrict.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-viablestrict.yml b/.github/workflows/update-viablestrict.yml index 0ed71fc8cba..fa41c277667 100644 --- a/.github/workflows/update-viablestrict.yml +++ b/.github/workflows/update-viablestrict.yml @@ -21,7 +21,7 @@ jobs: with: repository: pytorch/vision stable-branch: viable/strict - requires: '[\"Build Linux\", \"Build M1\", \"Build Macos\", \"Build Windows\", \"Tests\", \"CMake\", \"Lint\", \"Docs\"]' + requires: '[\"Build Linux Wheels\", \"Build M1 Wheels\", \"Tests\", \"CMake\", \"Lint\", \"Docs\"]' secret-bot-token: ${{ secrets.UPDATEBOT_TOKEN }} clickhouse-url: ${{ secrets.CLICKHOUSE_URL }} clickhouse-username: ${{ secrets.CLICKHOUSE_VIABLESTRICT_USERNAME }} From d14ca01c008b4bde2e74a13ea446642d7c82094a Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Tue, 18 Nov 2025 09:25:37 +0000 Subject: [PATCH 3/3] Update .github/workflows/update-viablestrict.yml --- .github/workflows/update-viablestrict.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-viablestrict.yml b/.github/workflows/update-viablestrict.yml index fa41c277667..349dfccafeb 100644 --- a/.github/workflows/update-viablestrict.yml +++ b/.github/workflows/update-viablestrict.yml @@ -21,7 +21,7 @@ jobs: with: repository: pytorch/vision stable-branch: viable/strict - requires: '[\"Build Linux Wheels\", \"Build M1 Wheels\", \"Tests\", \"CMake\", \"Lint\", \"Docs\"]' + requires: '[\"Build Linux Wheels\", \"Build M1 Wheels\", \"Tests\"]' secret-bot-token: ${{ secrets.UPDATEBOT_TOKEN }} clickhouse-url: ${{ secrets.CLICKHOUSE_URL }} clickhouse-username: ${{ secrets.CLICKHOUSE_VIABLESTRICT_USERNAME }}