From 2d6cd6951a1d8a3ada1d3f32314ef7dd7ad5b62d Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Thu, 2 Oct 2025 17:37:22 -0700 Subject: [PATCH] Enable codex workflows (#4636) --- .github/workflows/issue-deduplicator.yml | 8 ++++++-- .github/workflows/issue-labeler.yml | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issue-deduplicator.yml b/.github/workflows/issue-deduplicator.yml index 429c7f2a..779e739b 100644 --- a/.github/workflows/issue-deduplicator.yml +++ b/.github/workflows/issue-deduplicator.yml @@ -3,7 +3,7 @@ name: Issue Deduplicator on: issues: types: -# - opened - disabled while testing + - opened - labeled jobs: @@ -79,7 +79,11 @@ jobs: return; } - const lines = ['Potential duplicates detected:', ...numbers.map((value) => `- #${value}`)]; + const lines = [ + 'Potential duplicates detected:' + ...numbers.map((value) => `- #${value}`), + '', + '*Powered by [Codex Action](https://github.com/openai/codex-action)*']; await github.rest.issues.createComment({ owner: context.repo.owner, diff --git a/.github/workflows/issue-labeler.yml b/.github/workflows/issue-labeler.yml index 8e35d407..4b893d0c 100644 --- a/.github/workflows/issue-labeler.yml +++ b/.github/workflows/issue-labeler.yml @@ -3,7 +3,7 @@ name: Issue Labeler on: issues: types: -# - opened - disabled while testing + - opened - labeled jobs: