diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 704c57d..b2deabc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,4 +21,5 @@ jobs: - uses: actions/checkout@v2 - uses: ./ with: + package-name: 'com.github.actions.test-package' num-old-versions-to-delete: 0 \ No newline at end of file diff --git a/src/delete.ts b/src/delete.ts index a0abeb5..eeaf9ca 100644 --- a/src/delete.ts +++ b/src/delete.ts @@ -19,7 +19,7 @@ export function getVersionIds(input: Input): Observable { } return throwError( - "Could not get packageVersionIds. Explicitly specify using the 'package-version-ids' input or provide the 'package-name' and 'delete-oldest' inputs to dynamically retrieve oldest versions" + "Could not get packageVersionIds. Explicitly specify using the 'package-version-ids' input or provide the 'package-name' and 'num-old-versions-to-delete' inputs to dynamically retrieve oldest versions" ) }