Skip to content

Commit

Permalink
fix type mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jstaresincic committed Aug 25, 2022
1 parent e1c6510 commit 21feeea
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "action-delete-old-packages",
"version": "1.3.0",
"version": "1.3.1",
"description": "GitHub action for deleting old package versions in a repository",
"main": "dist/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ query getPackageVersions($owner: String!, $repo: String!, $package: String!, $af
}`;

const deletePackageVersion = `
mutation deletePackageVersion($packageVersionId: String!) {
mutation deletePackageVersion($packageVersionId: ID!) {
deletePackageVersion(input: {packageVersionId: $packageVersionId}) {
success
}
Expand Down

0 comments on commit 21feeea

Please sign in to comment.