From 8461cb335e541b98bdf566b131d17ddfaddcc8f0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 6 Aug 2026 15:11:42 +0200 Subject: [PATCH] =?utf8?q?=F0=9F=94=A5=20Remove=20the=20old=20Latest=20Cha?= =?utf8?q?nges=20workflow=20(#2064)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/latest-changes.yml | 42 ---------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/latest-changes.yml diff --git a/.github/workflows/latest-changes.yml b/.github/workflows/latest-changes.yml deleted file mode 100644 index 68e26c8b8..000000000 --- a/.github/workflows/latest-changes.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Latest Changes - -on: - pull_request_target: # zizmor: ignore[dangerous-triggers] - branches: - - main - types: - - closed - workflow_dispatch: - inputs: - number: - description: PR number - required: true - debug_enabled: - description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' - required: false - default: 'false' - -permissions: {} - -jobs: - latest-changes: - runs-on: ubuntu-latest - if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true - timeout-minutes: 5 - steps: - - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - ref: ${{ github.event.repository.default_branch }} - # To allow latest-changes to commit to the main branch - token: ${{ secrets.SQLMODEL_LATEST_CHANGES }} # zizmor: ignore[secrets-outside-env] - persist-credentials: true # required by tiangolo/latest-changes - # Allow debugging with tmate - - name: Setup tmate session - uses: mxschmitt/action-tmate@35b54afac29c97fb54faba5b513f8fbd1882f113 # v3.24 - if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.debug_enabled == 'true' }} - with: - limit-access-to-actor: true - - uses: tiangolo/latest-changes@8a940392f4c65274539453a5d5a76d9550203ac1 # 0.7.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - debug_logs: true -- 2.47.3