From f549254edef1e5921afd29cf924d5c04d5579193 Mon Sep 17 00:00:00 2001 From: Alex Welsh Date: Mon, 27 Jul 2026 10:29:40 +0100 Subject: [PATCH] Disable upstream sync workflow This workflow should sync SKC with the upstream kayobe-config template. Unfortunately, it has never workedm because it has a different structure to standard openstack forks. Disabling it until we have time to properly investigate it. --- .github/workflows/upstream-sync.yml | 38 ----------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/upstream-sync.yml diff --git a/.github/workflows/upstream-sync.yml b/.github/workflows/upstream-sync.yml deleted file mode 100644 index 92e5c1f548..0000000000 --- a/.github/workflows/upstream-sync.yml +++ /dev/null @@ -1,38 +0,0 @@ ---- -name: Upstream Sync -'on': - schedule: - - cron: "15 8 * * 1" - workflow_dispatch: -permissions: - contents: write - pull-requests: write -jobs: - synchronise-2023-1: - if: github.repository == 'stackhpc/stackhpc-kayobe-config' - name: Synchronise 2023.1 - uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main - with: - release_series: 2023.1 - upstream: openstack/kayobe-config - synchronise-2024-1: - if: github.repository == 'stackhpc/stackhpc-kayobe-config' - name: Synchronise 2024.1 - uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main - with: - release_series: 2024.1 - upstream: openstack/kayobe-config - synchronise-2025-1: - if: github.repository == 'stackhpc/stackhpc-kayobe-config' - name: Synchronise 2025.1 - uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main - with: - release_series: 2025.1 - upstream: openstack/kayobe-config - synchronise-master: - if: github.repository == 'stackhpc/stackhpc-kayobe-config' - name: Synchronise master - uses: stackhpc/.github/.github/workflows/upstream-sync.yml@main - with: - release_series: master - upstream: openstack/kayobe-config