mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
Enable codex workflows (#4636)
This commit is contained in:
committed by
GitHub
Unverified
parent
310e3c32e5
commit
2d6cd6951a
@@ -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,
|
||||
|
||||
@@ -3,7 +3,7 @@ name: Issue Labeler
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
# - opened - disabled while testing
|
||||
- opened
|
||||
- labeled
|
||||
|
||||
jobs:
|
||||
|
||||
Reference in New Issue
Block a user