From 1579216fc7fd9052f338b06c1dcf471ad70605d0 Mon Sep 17 00:00:00 2001 From: Boris Cherny Date: Fri, 8 Aug 2025 14:03:43 -0700 Subject: [PATCH] Enable auto-close duplicate issues workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove DRY RUN from workflow name and description to activate the automatic closing of duplicate issues after the testing period. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/auto-close-duplicates.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto-close-duplicates.yml b/.github/workflows/auto-close-duplicates.yml index 12ed1be..f5f53e1 100644 --- a/.github/workflows/auto-close-duplicates.yml +++ b/.github/workflows/auto-close-duplicates.yml @@ -1,5 +1,5 @@ -name: Auto-close duplicate issues (DRY RUN) -description: Dry run - logs issues that would be auto-closed as duplicates after 3 days if no response +name: Auto-close duplicate issues +description: Auto-closes issues that are duplicates of existing issues on: schedule: - cron: "0 9 * * *" @@ -16,12 +16,12 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - + - name: Setup Bun uses: oven-sh/setup-bun@v2 with: bun-version: latest - + - name: Auto-close duplicate issues run: bun run scripts/auto-close-duplicates.ts env: