Skip to content

Commit

Permalink
fix: make repo name non-nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
rdash99 committed Oct 10, 2024
1 parent f290874 commit 098ea61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/project-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
const boardID = boardData.organization.projectV2.id
console.log(boardID)
const PRQuery = `query PRs($cursor: String, $repo: String) {
const PRQuery = `query PRs($cursor: String, $repo: String!) {
organization(login: "SwanseaUniversityMedical") {
repository(name: $repo) {
pullRequests(first: 100, after: $cursor, states: [OPEN], author: "marvin-serp-bot") {
Expand Down

0 comments on commit 098ea61

Please sign in to comment.