Skip to content

Commit 6b0b1f7

Browse files
committed
chore(github-workflow): test bankrupt-issues
1 parent 1e43243 commit 6b0b1f7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/actions/next-repo-actions/dist/bankrupt/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/next-repo-actions/src/bankrupt-issues.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@ async function main() {
1010
// let issue_number: number[] = []
1111

1212
try {
13+
info(`Query: ${query}`) // Debugging: print the query
1314
const { data } = await octokit.rest.search.issuesAndPullRequests({
1415
q: query,
1516
per_page: 50,
1617
})
1718

1819
info(`Total # of issues = ${data.items.length}`)
20+
info(`Response data: ${JSON.stringify(data, null, 2)}`)
1921

2022
// await octokit.rest.issues.createComment({
2123
// owner,

.github/workflows/issue_bankrupt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55

66
jobs:
7-
run:
7+
bankrupt:
88
if: github.repository_owner == 'vercel'
99
runs-on: ubuntu-latest
1010
steps:

0 commit comments

Comments
 (0)