diff --git a/.github/workflows/lifecycle.yml b/.github/workflows/lifecycle.yml
deleted file mode 100644
index 1d06ebd40b0fded7d5f2bed88154759a84b6c7bc..0000000000000000000000000000000000000000
--- a/.github/workflows/lifecycle.yml
+++ /dev/null
@@ -1,189 +0,0 @@
----
-name: lifecycle
-
-on:
-  issues:
-    types:
-      - assigned
-      - closed
-      - demilestoned
-      - milestoned
-      - pinned
-      - unpinned
-      - reopened
-  issue_comment:
-    types:
-      - created
-  pull_request:
-    types:
-      - assigned
-      - auto_merge_enabled
-      - converted_to_draft
-      - demilestoned
-      - enqueued
-      - milestoned
-      - ready_for_review
-      - reopened
-      - synchronize
-  pull_request_review:
-    types:
-      - submitted
-      - dismissed
-  schedule:
-    - cron: '17 3 * * *' # every day at 03:17 UTC
-
-concurrency:
-  group: lifecycle-${{ github.event.issue.number || github.event.pull_request.number || 'scheduled' }}
-  cancel-in-progress: false
-
-jobs:
-  auto-label:
-    name: auto-label
-    if: github.event_name != 'schedule'
-    runs-on: ubuntu-latest
-    permissions:
-      contents: read
-      issues: write
-      pull-requests: write
-    steps:
-      - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
-        with:
-          sparse-checkout: |
-            .github/actions/auto-label
-
-      - name: "restore cache: node modules"
-        uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
-        with:
-          path: .github/actions/auto-label/node_modules
-          key: auto-label-${{ runner.os }}-${{ hashFiles('.github/actions/auto-label/package-lock.json') }}
-          restore-keys: |
-            auto-label-${{ runner.os }}-
-
-      - name: "install dependencies for //.github/actions/auto-label"
-        working-directory: .github/actions/auto-label
-        run: npm ci
-
-      - name: "add label for pinned or milestoned item: lifecycle/pinned"
-        if: github.event.action == 'pinned' || github.event.action == 'milestoned'
-        uses: ./.github/actions/auto-label
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        with:
-          add: lifecycle/pinned
-          remove: |
-            lifecycle/idle
-            lifecycle/dormant
-
-      - name: "remove label for unpinned or demilestoned item: lifecycle/pinned"
-        if: github.event.action == 'unpinned' || github.event.action == 'demilestoned'
-        uses: ./.github/actions/auto-label
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        with:
-          remove: lifecycle/pinned
-
-      - name: "remove lifecycle label due to activity"
-        if: github.event.action != 'pinned' && github.event.action != 'milestoned'
-        uses: ./.github/actions/auto-label
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        with:
-          remove: |
-            lifecycle/idle
-            lifecycle/dormant
-
-  idle-sweeper:
-    name: idle-sweeper
-    if: github.event_name == 'schedule'
-    runs-on: ubuntu-latest
-    permissions:
-      issues: write
-      pull-requests: write
-    env:
-      ISSUE_MESSAGE_DETAILS: |
-        <br /><strong>Issues will <em>not</em> be automatically closed due to
-        inactivity.</strong>
-        <hr />
-        <details>
-        <summary>Learn more</summary>
-
-        This bot triages issues in order to help the maintainers identify what
-        needs attention, according to the following lifecycle rules:
-
-        - After 90 days of inactivity, <code>lifecycle/idle</code> is applied
-        - After 180 days of inactivity, <code>lifecycle/dormant</code> is applied
-
-        The following actions remove the inactive status:
-
-        - Removing the <code>lifecycle/*</code> label from this issue
-        - Commenting on this issue
-        - Adding a new assignee to this issue
-        - Reopening this issue
-        - Adding this issue to a milestone
-        - Pinning this issue to the top of the issue board
-
-        To avoid automatic lifecycle management of this issue, maintainers can
-        add the <code>lifecycle/pinned</code> label.
-        </details>
-      PR_MESSAGE_DETAILS: |
-        <br /><strong>Pull requests will <em>not</em> be closed automatically
-        due to inactivity.</strong>
-
-        <details>
-        <summary>Learn more</summary>
-        This bot triages pull requests in order to help the maintainers identify
-        what needs attention, according to the following lifecycle rules:
-
-        - After 90 days of inactivity, <code>lifecycle/idle</code> is applied
-        - After 90 days of inactivity, <code>lifecycle/dormant</code> is applied
-
-        The following actions remove the inactive status:
-
-        - Removing the <code>lifecycle/*</code> label from this pull request
-        - Commenting on this pull request
-        - Submitting a review for this pull request
-        - Adding a new assignee to this pull request
-        - Reopening this pull request
-        - Adding this pull request to a milestone
-        - Converting this pull request to a draft
-        - Setting this pull request as "ready to review" (not a draft)
-        - Enabling auto-merge, or adding this pull request to the merge queue
-
-        To avoid automatic lifecycle management of this pull request,
-        maintainers can add the <code>lifecycle/pinned</code> label.
-        </details>
-    steps:
-      - name: "inactivity check: 90 days"
-        uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
-        with:
-          days-before-close: -1
-          days-before-stale: 90
-          exempt-all-milestones: true
-          exempt-issue-labels: lifecycle/idle,lifecycle/dormant,lifecycle/pinned
-          exempt-pr-labels: lifecycle/idle,lifecycle/dormant,lifecycle/pinned
-          labels-to-remove-when-stale: lifecycle/active
-          stale-issue-label: lifecycle/idle
-          stale-issue-message: |
-            Pinging maintainers. This issue has been inactive for 90 days.
-            ${{ env.ISSUE_MESSAGE_DETAILS }}
-          stale-pr-label: lifecycle/idle
-          stale-pr-message: |
-            Pinging maintainers. This pull request has been inactive for 90 days.
-            ${{ env.PR_MESSAGE_DETAILS }}
-
-      - name: "inactivity check: 180 days"
-        uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
-        with:
-          days-before-close: -1
-          days-before-stale: 180
-          exempt-all-milestones: true
-          labels-to-remove-when-stale: lifecycle/idle
-          only-labels: lifecycle/idle
-          stale-issue-label: lifecycle/dormant
-          stale-issue-message: |-
-            Pinging maintainers. This issue has been inactive for 180 days.
-            ${{ env.ISSUE_MESSAGE_DETAILS }}
-          stale-pr-label: lifecycle/dormant
-          stale-pr-message: |-
-            Pinging maintainers. This pull request has been inactive for 180 days.
-            ${{ env.PR_MESSAGE_DETAILS }}