Skip to content

Commit

Permalink
Merge branch 'main' into AgentSet
Browse files Browse the repository at this point in the history
  • Loading branch information
adamamer20 authored Feb 3, 2024
2 parents 5088377 + f4bc040 commit ac334ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/issues-dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
const { context } = github;
// Get the PR description
const { data: pullRequest } = await octokit.rest.pulls.get({
const { data: pullRequest } = await github.rest.pulls.get({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number,
Expand All @@ -34,7 +34,7 @@ jobs:
while ((match = issueRegex.exec(description)) !== null) {
const issues = match[1].split(/\s+#/);
for (const issueNumber of issues) {
const { data: issue } = await octokit.rest.issues.get({
const { data: issue } = await github.rest.issues.get({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: parseInt(issueNumber),
Expand Down

0 comments on commit ac334ab

Please sign in to comment.