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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 3 deletions

View file

@ -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,

View file

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