From 8186c12b94a613bca2b4991b439eee1774026f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Thu, 6 Aug 2026 15:00:11 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20Remove=20the=20old=20Latest=20Ch?= =?UTF-8?q?anges=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/latest-changes.yml | 38 ---------------------------- 1 file changed, 38 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 049aa4d..0000000 --- a/.github/workflows/latest-changes.yml +++ /dev/null @@ -1,38 +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 - -permissions: {} - -jobs: - latest-changes: - runs-on: ubuntu-latest - if: github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true - permissions: - pull-requests: read - steps: - - name: Dump GitHub context - env: - GITHUB_CONTEXT: ${{ toJson(github) }} - run: echo "$GITHUB_CONTEXT" - - 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.FASTAPI_VSCODE_LATEST_CHANGES }} # zizmor: ignore[secrets-outside-env] - persist-credentials: true # required by tiangolo/latest-changes - - uses: tiangolo/latest-changes@8a940392f4c65274539453a5d5a76d9550203ac1 # 0.7.1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - latest_changes_file: CHANGELOG.md - debug_logs: true