Skip to content

Commit

Permalink
fix: missing bracket and vars
Browse files Browse the repository at this point in the history
  • Loading branch information
rdash99 committed Oct 10, 2024
1 parent 993df8b commit b3875cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
const PRQuery = `query PRs($cursor: String, $repo: String!) {
organization(login: "SwanseaUniversityMedical") {
repository(name: $repo) {
pullRequests(first: 100, after: $cursor, states: [OPEN] {
pullRequests(first: 100, after: $cursor, states: [OPEN]) {
pageInfo {
hasNextPage
endCursor
Expand All @@ -90,7 +90,7 @@ jobs:
}`;
const addToBoard = `mutation AddToBoard($boardID: ID!, $PRID: ID!) {
addProjectV2ItemById(input: {projectId: "PROJECT_ID" contentId: "CONTENT_ID"}) {
addProjectV2ItemById(input: {projectId: $boardID, contentId: $PRID}) {
item {
id
}
Expand Down

0 comments on commit b3875cf

Please sign in to comment.