-
Notifications
You must be signed in to change notification settings - Fork 27k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(github): initialize triage_with_ai.yml workflow again (#68292)
## Why? There is no way to test opening an issue without clever hacks. So need to initialize again to see the payload object, which will be necessary when I set up a Tool Call → Zod Schema with the :ai-stonks: SDK. --------- Co-authored-by: JJ Kasper <[email protected]>
- Loading branch information
Showing
6 changed files
with
2,047 additions
and
715 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
.github/actions/next-repo-actions/dist/triage-issues-with-ai/index.js
Large diffs are not rendered by default.
Oops, something went wrong.
457 changes: 457 additions & 0 deletions
457
.github/actions/next-repo-actions/dist/triage-issues-with-ai/licenses.txt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
.github/actions/next-repo-actions/src/triage-issues-with-ai.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
import { info } from '@actions/core' | ||
import { context } from '@actions/github' | ||
|
||
async function main() { | ||
info('Triaging issues with AI!') | ||
const issue = context.payload.issue | ||
info(`Issue: ${issue}`) | ||
info(`Issue: ${JSON.stringify(issue, null, 2)}`) | ||
} | ||
|
||
main() |
Oops, something went wrong.