From 5290a68b9f27886e3514944d228fa1e0bb3cf861 Mon Sep 17 00:00:00 2001 From: Souma Date: Thu, 26 Mar 2026 16:26:40 +0900 Subject: [PATCH] ci(actions): Disable environment deployments There's no need to create deployments. --- .github/workflows/ci-checker.yml | 4 +++- .github/workflows/ci.yml | 4 +++- .github/workflows/release.yml | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-checker.yml b/.github/workflows/ci-checker.yml index a03e8503..5bb2e3fa 100644 --- a/.github/workflows/ci-checker.yml +++ b/.github/workflows/ci-checker.yml @@ -27,7 +27,9 @@ jobs: needs: merge-gatekeeper if: ${{ github.event.pull_request.user.login == 'renovate[bot]' && github.event.sender.login == 'autofix-ci[bot]' && toJson(github.event.pull_request.requested_reviewers) == '[]' }} runs-on: Ubuntu-Slim - environment: CI-Checker + environment: + name: CI-Checker + deployment: false timeout-minutes: 1 steps: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2072eac5..93fdd5ed 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -88,7 +88,9 @@ jobs: test: name: ๐Ÿงช Test runs-on: Ubuntu-Slim - environment: CI + environment: + name: CI + deployment: false timeout-minutes: 1 steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a27a2862..2700f8c0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,9 @@ jobs: tagpr: name: ๐Ÿ”– Release a New Version runs-on: Ubuntu-Slim - environment: Release + environment: + name: Release + deployment: false timeout-minutes: 1 outputs: tag: ${{ steps.tagpr.outputs.tag }}