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: