Enable codex workflows (#4636)

This commit is contained in:
pakrym-oai
2025-10-02 17:37:22 -07:00
committed by GitHub
parent 310e3c32e5
commit 2d6cd6951a
2 changed files with 7 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ name: Issue Deduplicator
on: on:
issues: issues:
types: types:
# - opened - disabled while testing - opened
- labeled - labeled
jobs: jobs:
@@ -79,7 +79,11 @@ jobs:
return; 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({ await github.rest.issues.createComment({
owner: context.repo.owner, owner: context.repo.owner,

View File

@@ -3,7 +3,7 @@ name: Issue Labeler
on: on:
issues: issues:
types: types:
# - opened - disabled while testing - opened
- labeled - labeled
jobs: jobs: