Compare commits

...
24 Commits
Author SHA1 Message Date
Nishtha Gupta eaa1f7c20f Update action.yml 2022-12-29 17:43:25 +05:30
Nishtha Gupta ce1d329288 Update readme: 2022-12-29 15:59:15 +05:30
Nishtha Gupta 9dbafb83da Remove repo param support & logs 2022-12-29 15:51:31 +05:30
Nishtha Gupta 64305dab94 Optimisation 2022-12-29 15:35:31 +05:30
Nishtha Gupta e95cd87648 Fetch all versions at once 2022-12-29 14:43:48 +05:30
Anupam 7f4037254e add some logs 2022-12-28 18:32:12 +00:00
Anupam e521d9e753 get versions using rest 2022-12-28 14:43:50 +00:00
Anupam cc7196aa1d try to fix npm run pack? 2022-12-28 14:39:47 +00:00
Nishtha Gupta 6ce7577c5e Adding logs 2022-12-28 16:56:22 +05:30
Nishtha Gupta 92bd8a3cd0 First commit with delete version API 2022-12-28 16:33:42 +05:30
Anupam 280935cb1a add package-type param to action.yml 2022-12-27 15:11:20 +00:00
Anupam 272ad859dc add package type param 2022-12-27 14:35:56 +00:00
Shyam Grover c5e64443ea Merge pull request #79 from actions/dependabot/npm_and_yarn/actions/core-1.9.1
Bump @actions/core from 1.6.0 to 1.9.1
2022-11-01 11:53:52 +05:30
Shyam Grover 9b1e76ea45 Update core.dep.yml 2022-11-01 11:51:12 +05:30
Shyam Grover 37b7aca7eb Update core.dep.yml 2022-11-01 11:50:38 +05:30
Shyam Grover f87b4a0b81 Update README.md 2022-11-01 11:48:29 +05:30
Shyam Grover 6961202f36 Merge pull request #70 from actions/dependabot/npm_and_yarn/minimist-1.2.6
Bump minimist from 1.2.5 to 1.2.6
2022-11-01 11:44:17 +05:30
Naveen Desu 4eab40be13 Merge pull request #82 from gaelgoth/fix_readme_typo
fix typo in readme
2022-09-15 12:02:36 +05:30
gael.gothuey 8701e46f41 fix typo in readme 2022-09-14 22:07:47 +02:00
dependabot[bot] 565ec2459a Bump @actions/core from 1.6.0 to 1.9.1
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.6.0 to 1.9.1.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
2022-08-18 19:22:50 +00:00
Tina Heidinger ec4518c513 Merge pull request #75 from actions/74-add-support-for-deletion-of-container-and-npm-packages
Indicate missing support for GHCR and soon also npm in readme
2022-07-01 11:37:47 +02:00
tinaheidinger 33300d7916 Indicate missing support for GHCR and soon also npm in readme 2022-07-01 11:34:51 +02:00
dependabot[bot] e048663cdf Bump minimist from 1.2.5 to 1.2.6
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
2022-03-26 06:17:25 +00:00
Namrata Jha 0e86ee6891 Update README.md 2022-03-02 13:36:45 +05:30
15 changed files with 18231 additions and 3096 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
--- ---
name: "@actions/core" name: "@actions/core"
version: 1.6.0 version: 1.9.1
type: npm type: npm
summary: Actions core lib summary: Actions core lib
homepage: https://github.com/actions/toolkit/tree/master/packages/core homepage: https://github.com/actions/toolkit/tree/master/packages/core
+58 -45
View File
@@ -1,6 +1,6 @@
# Delete Package Versions # Delete Package Versions
This action deletes versions of a package from [GitHub Packages](https://github.com/features/packages) except ghcr packages. This action will only delete a maximum of 99 versions in one run. This action deletes versions of a package from [GitHub Packages](https://github.com/features/packages). This action will only delete a maximum of 99 versions in one run.
### What It Can Do ### What It Can Do
@@ -17,7 +17,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
# Usage # Usage
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
# Can be a single package version id, or a comma separated list of package version ids. # Can be a single package version id, or a comma separated list of package version ids.
# Defaults to an empty string. # Defaults to an empty string.
@@ -28,16 +28,14 @@ This action deletes versions of a package from [GitHub Packages](https://github.
# Required if deleting a version from a package hosted in a different repo than the one executing the workflow. # Required if deleting a version from a package hosted in a different repo than the one executing the workflow.
owner: owner:
# Repo hosting the package.
# Defaults to the repo executing the workflow.
# Required if deleting a version from a package hosted in a different repo than the one executing the workflow.
repo:
# Name of the package. # Name of the package.
# Defaults to an empty string. # Required
# Required if `package-version-ids` input is not given.
package-name: package-name:
# Type of the package.
# Required
package-type:
# The number of old versions to delete starting from the oldest version. # The number of old versions to delete starting from the oldest version.
# Defaults to 1. # Defaults to 1.
num-old-versions-to-delete: num-old-versions-to-delete:
@@ -70,7 +68,7 @@ This action deletes versions of a package from [GitHub Packages](https://github.
# Valid Input Combinations # Valid Input Combinations
`owner`, `repo`, `package-name` and `token` can be used with the following combinations in a workflow - `owner`, `package-name`, `package-type` and `token` can be used with the following combinations in a workflow -
- `num-old-versions-to-delete` - `num-old-versions-to-delete`
- `min-versions-to-keep` - `min-versions-to-keep`
@@ -101,13 +99,14 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all pre-release package versions except latest 10 in the same repo as the workflow Delete all pre-release package versions except latest 10 in the same repo as the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
min-versions-to-keep: 10 min-versions-to-keep: 10
delete-only-pre-release-versions: "true" delete-only-pre-release-versions: "true"
``` ```
To delete all pre release versions except y latest pre-release package versions in a different repo than the workflow the __owner__, __repo__, __package-name__, __token__, __min-versions-to-keep__ and __delete-only-pre-release-versions__ inputs are required. To delete all pre release versions except y latest pre-release package versions in a different repo than the workflow the __owner__, __package-name__, __token__, __min-versions-to-keep__ and __delete-only-pre-release-versions__ inputs are required.
The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__. The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__.
@@ -116,11 +115,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all pre-release package versions except latest 10 in a different repo than the workflow Delete all pre-release package versions except latest 10 in a different repo than the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages'
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
token: ${{ secrets.GITHUB_PAT }} token: ${{ secrets.GITHUB_PAT }}
min-versions-to-keep: 10 min-versions-to-keep: 10
delete-only-pre-release-versions: "true" delete-only-pre-release-versions: "true"
@@ -137,14 +136,15 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 3 package versions excluding major versions as per semver in the same repo as the workflow Delete all except latest 3 package versions excluding major versions as per semver in the same repo as the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-packae' package-name: 'test-package'
package-type: 'npm'
min-versions-to-keep: 3 min-versions-to-keep: 3
ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$' ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$'
``` ```
To delete all except y latest versions while ignoring particular package versions in a different repo than the workflow the __owner__, __repo__, __package-name__, __token__, __min-versions-to-keep__ and __ignore-versions__ inputs are required. To delete all except y latest versions while ignoring particular package versions in a different repo than the workflow the __owner__, __package-name__, __token__, __min-versions-to-keep__ and __ignore-versions__ inputs are required.
The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__. The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__.
@@ -153,11 +153,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 3 package versions excluding major versions as per semver in a different repo than the workflow Delete all except latest 3 package versions excluding major versions as per semver in a different repo than the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages' package-name: 'test-package'
package-name: 'test-packae' package-type: 'npm'
token: ${{ secrets.GITHUB_PAT }} token: ${{ secrets.GITHUB_PAT }}
min-versions-to-keep: 3 min-versions-to-keep: 3
ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$' ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$'
@@ -176,14 +176,15 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete 3 oldest versions excluding major versions as per semver is the same repo as the workflow Delete 3 oldest versions excluding major versions as per semver is the same repo as the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-packae' package-name: 'test-package'
package-type: 'npm'
num-old-versions-to-delete: 3 num-old-versions-to-delete: 3
ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$' ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$'
``` ```
To delete oldest x number of versions while ignoring all the major package versions in a different repo than the workflow the __owner__, __repo__, __package-name__, __token__, __num-oldest-versions-to-delete__ and __ignore-versions__ inputs are required. To delete oldest x number of versions while ignoring all the major package versions in a different repo than the workflow the __owner__, __package-name__, __token__, __num-oldest-versions-to-delete__ and __ignore-versions__ inputs are required.
There is a possibility if the oldest x number of versions contain ignored package versions, actual package versions to get deleted will be less than x. There is a possibility if the oldest x number of versions contain ignored package versions, actual package versions to get deleted will be less than x.
@@ -191,14 +192,14 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__ __Example__
Delete 3 oldest versions excluding major versions as per semver is a differernt repo than the workflow Delete 3 oldest versions excluding major versions as per semver is a different repo than the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages' package-name: 'test-package'
package-name: 'test-packae' package-type: 'npm'
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
num-old-versions-to-delete: 3 num-old-versions-to-delete: 3
ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$' ignore-versions: '^(0|[1-9]\\d*)\\.0\\.0$'
@@ -215,13 +216,14 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 2 versions of a package hosted in the same repo as the workflow Delete all except latest 2 versions of a package hosted in the same repo as the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
min-versions-to-keep: 2 min-versions-to-keep: 2
``` ```
To delete all except y latest versions of a package hosted in a repo other than the workflow the __owner__, __repo__, __package-name__, __token__ and __min-versions-to-keep__ inputs are required. To delete all except y latest versions of a package hosted in a repo other than the workflow the __owner__, __package-name__, __token__ and __min-versions-to-keep__ inputs are required.
The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__. The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__.
@@ -230,11 +232,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete all except latest 2 versions of a package hosted in a repo other than the workflow Delete all except latest 2 versions of a package hosted in a repo other than the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages'
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
min-versions-to-keep: 2 min-versions-to-keep: 2
``` ```
@@ -250,13 +252,14 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete the oldest 3 version of a package hosted in the same repo as the workflow Delete the oldest 3 version of a package hosted in the same repo as the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
num-old-versions-to-delete: 3 num-old-versions-to-delete: 3
``` ```
To delete the oldest x number of versions of a package hosted in a different repo than the workflow the __owner__, __repo__, __package-name__, __token__ and __num-old-versions-to-delete__ inputs are required. To delete the oldest x number of versions of a package hosted in a different repo than the workflow the __owner__, __package-name__, __token__ and __num-old-versions-to-delete__ inputs are required.
The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__. The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__.
@@ -265,11 +268,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
Delete the oldest 3 version of a package hosted in a different repo than the one executing the workflow Delete the oldest 3 version of a package hosted in a different repo than the one executing the workflow
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages'
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
num-old-versions-to-delete: 3 num-old-versions-to-delete: 3
token: ${{ secrets.GITHUB_PAT }} token: ${{ secrets.GITHUB_PAT }}
``` ```
@@ -283,23 +286,24 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
``` ```
To delete the oldest version of a package that is hosted in a different repo than the workflow the __owner__, __repo__, __package-name__, __token__ inputs are required. To delete the oldest version of a package that is hosted in a different repo than the workflow the __owner__, __package-name__, __token__ inputs are required.
The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__. The [token][token] needs the delete packages and read packages scope. It is recommended [to store the token as a secret][secret]. In this example the [token][token] was stored as a secret named __GITHUB_PAT__.
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
owner: 'github' owner: 'github'
repo: 'packages'
package-name: 'test-package' package-name: 'test-package'
package-type: 'npm'
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
``` ```
@@ -314,9 +318,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3' package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
package-name: 'test-package'
package-type: 'npm'
``` ```
To delete a specific version of a package that is hosted in a different repo than the workflow the __package-version-ids__ and __token__ inputs are required. To delete a specific version of a package that is hosted in a different repo than the workflow the __package-version-ids__ and __token__ inputs are required.
@@ -328,9 +334,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3' package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3'
package-name: 'test-package'
package-type: 'npm'
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
``` ```
@@ -338,19 +346,21 @@ This action deletes versions of a package from [GitHub Packages](https://github.
### Delete multiple specific versions of a package ### Delete multiple specific versions of a package
To delete multiple specifc versions of a package that is hosted in the same repo as the workflow the __package-version-ids__ input is required. To delete multiple specific versions of a package that is hosted in the same repo as the workflow the __package-version-ids__ input is required.
The __package-version-ids__ input should be a comma separated string of package version ids. Package version ids can be retrieved via the [GitHub GraphQL API][api]. The __package-version-ids__ input should be a comma separated string of package version ids. Package version ids can be retrieved via the [GitHub GraphQL API][api].
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw' package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
package-name: 'test-package'
package-type: 'npm'
``` ```
To delete multiple specifc versions of a package that is hosted in a repo other than the workflow the __package-version-ids__, __token__ inputs are required. To delete multiple specific versions of a package that is hosted in a repo other than the workflow the __package-version-ids__, __token__ inputs are required.
The __package-version-ids__ input should be a comma separated string of package version ids. Package version ids can be retrieved via the [GitHub GraphQL API][api]. The __package-version-ids__ input should be a comma separated string of package version ids. Package version ids can be retrieved via the [GitHub GraphQL API][api].
@@ -359,9 +369,11 @@ This action deletes versions of a package from [GitHub Packages](https://github.
__Example__ __Example__
```yaml ```yaml
- uses: actions/delete-package-versions@v2 - uses: actions/delete-package-versions@v3
with: with:
package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw' package-version-ids: 'MDE0OlBhY2thZ2VWZXJzaW9uOTcyMDY3, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzQ5, MDE0OlBhY2thZ2VWZXJzaW9uOTcyMzUw'
package-name: 'test-package'
package-type: 'npm'
token: ${{ secrets.PAT }} token: ${{ secrets.PAT }}
``` ```
@@ -372,3 +384,4 @@ The scripts and documentation in this project are released under the [MIT Licens
[api]: https://developer.github.com/v4/previews/#github-packages [api]: https://developer.github.com/v4/previews/#github-packages
[token]: https://help.github.com/en/packages/publishing-and-managing-packages/about-github-packages#about-tokens [token]: https://help.github.com/en/packages/publishing-and-managing-packages/about-github-packages#about-tokens
[secret]: https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets [secret]: https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
-1
View File
@@ -89,7 +89,6 @@ describe.skip('index tests -- call graphql', () => {
const defaultInput: InputParams = { const defaultInput: InputParams = {
packageVersionIds: [], packageVersionIds: [],
owner: 'namratajha', owner: 'namratajha',
repo: 'only-pkg',
packageName: 'only-pkg', packageName: 'only-pkg',
numOldVersionsToDelete: 1, numOldVersionsToDelete: 1,
minVersionsToKeep: -1, minVersionsToKeep: -1,
-25
View File
@@ -1,25 +0,0 @@
import {deletePackageVersion, deletePackageVersions} from '../../src/version'
const githubToken = process.env.GITHUB_TOKEN as string
describe.skip('delete tests', () => {
it('deletePackageVersion', async () => {
const response = await deletePackageVersion(
'PV_lADOGReZt84AEI7FzgDSHEI',
githubToken
).toPromise()
expect(response).toBe(true)
})
it('deletePackageVersions', async () => {
const response = await deletePackageVersions(
[
'PV_lADOGReZt84AEI7FzgDSHDs',
'PV_lADOGReZt84AEI7FzgDSHDY',
'PV_lADOGReZt84AEI7FzgDSHC8'
],
githubToken
).toPromise()
expect(response).toBe(true)
})
})
-68
View File
@@ -1,68 +0,0 @@
import {mockOldestQueryResponse} from './graphql.mock'
import {
getOldestVersions as _getOldestVersions,
QueryInfo
} from '../../src/version'
import {Observable} from 'rxjs'
describe.skip('get versions tests -- call graphql', () => {
it('getOldestVersions -- succeeds', done => {
const numVersions = 1
getOldestVersions({numVersions}).subscribe(result => {
expect(result.versions.length).toBe(numVersions)
done()
})
})
it('getOldestVersions -- fails for invalid repo', done => {
getOldestVersions({repo: 'actions-testin'}).subscribe({
error: err => {
expect(err).toBeTruthy()
done()
},
complete: async () => done.fail('no error thrown')
})
})
})
describe('get versions tests -- mock graphql', () => {
it('getOldestVersions -- success', done => {
const numVersions = 5
mockOldestQueryResponse(numVersions)
getOldestVersions({numVersions}).subscribe(result => {
expect(result.versions.length).toBe(numVersions)
done()
})
})
})
interface Params {
owner?: string
repo?: string
packageName?: string
numVersions?: number
startCursor?: string
token?: string
}
const defaultParams = {
owner: 'namratajha',
repo: 'test-repo',
packageName: 'test-repo',
numVersions: 1,
startCursor: '',
token: process.env.GITHUB_TOKEN as string
}
function getOldestVersions(params?: Params): Observable<QueryInfo> {
const p: Required<Params> = {...defaultParams, ...params}
return _getOldestVersions(
p.owner,
p.repo,
p.packageName,
p.numVersions,
p.startCursor,
p.token
)
}
+6 -2
View File
@@ -24,8 +24,12 @@ inputs:
package-name: package-name:
description: > description: >
Name of the package containing the version to delete. Name of the package containing the version to delete.
Required if dynamically deleting oldest versions. required: true
required: false
package-type:
description: >
Type of the package containing the version to delete.
required: true
num-old-versions-to-delete: num-old-versions-to-delete:
description: > description: >
+6385 -2546
View File
File diff suppressed because one or more lines are too long
+11605 -117
View File
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -25,8 +25,9 @@
"author": "YourNameOrOrganization", "author": "YourNameOrOrganization",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.6.0", "@actions/core": "^1.9.1",
"@actions/github": "^2.1.1", "@actions/github": "^2.1.1",
"@octokit/rest": "^19.0.5",
"rxjs": "^6.5.4" "rxjs": "^6.5.4"
}, },
"devDependencies": { "devDependencies": {
+62 -86
View File
@@ -1,6 +1,13 @@
/* eslint-disable i18n-text/no-en */
/* eslint-disable @typescript-eslint/no-unused-vars */
import {Input} from './input' import {Input} from './input'
import {EMPTY, Observable, of, throwError} from 'rxjs' import {EMPTY, Observable, of, throwError} from 'rxjs'
import {deletePackageVersions, getOldestVersions, VersionInfo} from './version' import {reduce} from 'rxjs/operators'
import {
deletePackageVersions,
getOldestVersions,
RestVersionInfo
} from './version'
import {concatMap, map, expand, tap} from 'rxjs/operators' import {concatMap, map, expand, tap} from 'rxjs/operators'
const RATE_LIMIT = 99 const RATE_LIMIT = 99
@@ -8,36 +15,34 @@ let totalCount = 0
export function getVersionIds( export function getVersionIds(
owner: string, owner: string,
repo: string,
packageName: string, packageName: string,
packageType: string,
numVersions: number, numVersions: number,
cursor: string, page: number,
token: string token: string
): Observable<VersionInfo[]> { ): Observable<RestVersionInfo[]> {
return getOldestVersions( return getOldestVersions(
owner, owner,
repo,
packageName, packageName,
packageType,
numVersions, numVersions,
cursor, page,
token token
).pipe( ).pipe(
expand(value => expand(value =>
value.paginate value.paginate
? getOldestVersions( ? getOldestVersions(
owner, owner,
repo,
packageName, packageName,
packageType,
numVersions, numVersions,
value.cursor, value.page + 1,
token token
) )
: EMPTY : EMPTY
), ),
tap( tap(value => (totalCount = totalCount + value.totalCount)),
value => (totalCount = totalCount === 0 ? value.totalCount : totalCount) reduce((acc, value) => acc.concat(value.versions), [] as RestVersionInfo[])
),
map(value => value.versions)
) )
} }
@@ -46,82 +51,43 @@ export function finalIds(input: Input): Observable<string[]> {
return of(input.packageVersionIds) return of(input.packageVersionIds)
} }
if (input.hasOldestVersionQueryInfo()) { if (input.hasOldestVersionQueryInfo()) {
if (input.minVersionsToKeep < 0) { return getVersionIds(
// This code block is when num-old-versions-to-delete is specified. input.owner,
// Setting input.numOldVersionsToDelete is set as minimum of input.numOldVersionsToDelete and RATE_LIMIT input.packageName,
input.numOldVersionsToDelete = input.packageType,
input.numOldVersionsToDelete < RATE_LIMIT RATE_LIMIT,
? input.numOldVersionsToDelete 1,
: RATE_LIMIT input.token
return getVersionIds( ).pipe(
input.owner, // This code block executes on all versions of a package starting from oldest
input.repo, map(value => {
input.packageName, // we need to delete oldest versions first
RATE_LIMIT, value.sort((a, b) => {
'', return (
input.token new Date(a.created_at).getTime() - new Date(b.created_at).getTime()
).pipe( )
// This code block executes on batches of 100 versions starting from oldest })
map(value => { /*
/*
Here first filter out the versions that are to be ignored. Here first filter out the versions that are to be ignored.
Then update input.numOldeVersionsToDelete to the no of versions deleted from the next 100 versions batch. Then update input.numOldeVersionsToDelete to the no of versions deleted from the next 100 versions batch.
*/ */
value = value.filter(info => !input.ignoreVersions.test(info.version)) value = value.filter(info => !input.ignoreVersions.test(info.version))
const temp = input.numOldVersionsToDelete let toDelete = 0
input.numOldVersionsToDelete = if (input.minVersionsToKeep < 0) {
input.numOldVersionsToDelete - value.length <= 0 toDelete = Math.min(
? 0 value.length,
: input.numOldVersionsToDelete - value.length Math.min(input.numOldVersionsToDelete, RATE_LIMIT)
return value.map(info => info.id).slice(0, temp) )
}) } else {
) toDelete = Math.min(
} else { value.length - input.minVersionsToKeep,
// This code block is when min-versions-to-keep is specified. RATE_LIMIT
return getVersionIds( )
input.owner, }
input.repo, if (toDelete < 0) return []
input.packageName, return value.map(info => info.id.toString()).slice(0, toDelete)
RATE_LIMIT, })
'', )
input.token
).pipe(
// This code block executes on batches of 100 versions starting from oldest
map(value => {
/*
Here totalCount is the total no of versions in the package.
First we update totalCount by removing no of ignored versions from it and also filter them out from value.
toDelete is the no of versions that need to be deleted and input.numDeleted is the total no of versions deleted before this batch.
We calculate this from total no of versions in the package, the min no of versions to keep and the no of versions we have deleted in earlier batch.
Then we update toDelete to not exceed the length of current batch of versions.
Now toDelete holds the no of versions to be deleted from the current batch of versions.
*/
totalCount =
totalCount -
value.filter(info => input.ignoreVersions.test(info.version)).length
value = value.filter(info => !input.ignoreVersions.test(info.version))
let toDelete = totalCount - input.minVersionsToKeep - input.numDeleted
toDelete = toDelete > value.length ? value.length : toDelete
//Checking here if we have any versions to delete and whether we are within the RATE_LIMIT.
if (toDelete > 0 && input.numDeleted < RATE_LIMIT) {
/*
Checking here if we can delete all the versions left in the current batch.
input.numDeleted + toDelete should not exceed RATE_LIMIT.
If it is exceeding we only delete the no of versions from this batch that are allowed within the RATE_LIMIT.
i.e. diff between RATE_LIMIT and versions deleted till now (input.numDeleted)
input.numDeleted is updated accordingly.
*/
if (input.numDeleted + toDelete > RATE_LIMIT) {
toDelete = RATE_LIMIT - input.numDeleted
input.numDeleted = RATE_LIMIT
} else {
input.numDeleted = input.numDeleted + toDelete
}
return value.map(info => info.id).slice(0, toDelete)
} else return []
})
)
}
} }
return throwError( return throwError(
"Could not get packageVersionIds. Explicitly specify using the 'package-version-ids' input" "Could not get packageVersionIds. Explicitly specify using the 'package-version-ids' input"
@@ -146,5 +112,15 @@ export function deleteVersions(input: Input): Observable<boolean> {
const result = finalIds(input) const result = finalIds(input)
return result.pipe(concatMap(ids => deletePackageVersions(ids, input.token))) return result.pipe(
concatMap(ids =>
deletePackageVersions(
ids,
input.owner,
input.packageName,
input.packageType,
input.token
)
)
)
} }
+8 -5
View File
@@ -1,8 +1,8 @@
export interface InputParams { export interface InputParams {
packageVersionIds?: string[] packageVersionIds?: string[]
owner?: string owner?: string
repo?: string
packageName?: string packageName?: string
packageType?: string
numOldVersionsToDelete?: number numOldVersionsToDelete?: number
minVersionsToKeep?: number minVersionsToKeep?: number
ignoreVersions?: RegExp ignoreVersions?: RegExp
@@ -13,8 +13,8 @@ export interface InputParams {
const defaultParams = { const defaultParams = {
packageVersionIds: [], packageVersionIds: [],
owner: '', owner: '',
repo: '',
packageName: '', packageName: '',
packageType: '',
numOldVersionsToDelete: 0, numOldVersionsToDelete: 0,
minVersionsToKeep: 0, minVersionsToKeep: 0,
ignoreVersions: new RegExp(''), ignoreVersions: new RegExp(''),
@@ -25,8 +25,8 @@ const defaultParams = {
export class Input { export class Input {
packageVersionIds: string[] packageVersionIds: string[]
owner: string owner: string
repo: string
packageName: string packageName: string
packageType: string
numOldVersionsToDelete: number numOldVersionsToDelete: number
minVersionsToKeep: number minVersionsToKeep: number
ignoreVersions: RegExp ignoreVersions: RegExp
@@ -39,8 +39,8 @@ export class Input {
this.packageVersionIds = validatedParams.packageVersionIds this.packageVersionIds = validatedParams.packageVersionIds
this.owner = validatedParams.owner this.owner = validatedParams.owner
this.repo = validatedParams.repo
this.packageName = validatedParams.packageName this.packageName = validatedParams.packageName
this.packageType = validatedParams.packageType
this.numOldVersionsToDelete = validatedParams.numOldVersionsToDelete this.numOldVersionsToDelete = validatedParams.numOldVersionsToDelete
this.minVersionsToKeep = validatedParams.minVersionsToKeep this.minVersionsToKeep = validatedParams.minVersionsToKeep
this.ignoreVersions = validatedParams.ignoreVersions this.ignoreVersions = validatedParams.ignoreVersions
@@ -52,7 +52,6 @@ export class Input {
hasOldestVersionQueryInfo(): boolean { hasOldestVersionQueryInfo(): boolean {
return !!( return !!(
this.owner && this.owner &&
this.repo &&
this.packageName && this.packageName &&
this.numOldVersionsToDelete >= 0 && this.numOldVersionsToDelete >= 0 &&
this.token this.token
@@ -67,6 +66,10 @@ export class Input {
return false return false
} }
if (this.packageType === '' || this.packageName === '') {
return false
}
if (this.deletePreReleaseVersions === 'true') { if (this.deletePreReleaseVersions === 'true') {
this.minVersionsToKeep = this.minVersionsToKeep =
this.minVersionsToKeep > 0 ? this.minVersionsToKeep : 0 this.minVersionsToKeep > 0 ? this.minVersionsToKeep : 0
+6 -2
View File
@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-unused-vars */
import {getInput, setFailed} from '@actions/core' import {getInput, setFailed} from '@actions/core'
import {context} from '@actions/github' import {context} from '@actions/github'
import {Input} from './input' import {Input} from './input'
@@ -11,8 +12,8 @@ function getActionInput(): Input {
? getInput('package-version-ids').split(',') ? getInput('package-version-ids').split(',')
: [], : [],
owner: getInput('owner') ? getInput('owner') : context.repo.owner, owner: getInput('owner') ? getInput('owner') : context.repo.owner,
repo: getInput('repo') ? getInput('repo') : context.repo.repo,
packageName: getInput('package-name'), packageName: getInput('package-name'),
packageType: getInput('package-type'),
numOldVersionsToDelete: Number(getInput('num-old-versions-to-delete')), numOldVersionsToDelete: Number(getInput('num-old-versions-to-delete')),
minVersionsToKeep: Number(getInput('min-versions-to-keep')), minVersionsToKeep: Number(getInput('min-versions-to-keep')),
ignoreVersions: RegExp(getInput('ignore-versions')), ignoreVersions: RegExp(getInput('ignore-versions')),
@@ -29,7 +30,10 @@ function run(): Observable<boolean> {
catchError(err => throwError(err)) catchError(err => throwError(err))
) )
} catch (error) { } catch (error) {
return throwError(error.message) if (error instanceof Error) {
return throwError(error.message)
}
return throwError(error)
} }
} }
+24
View File
@@ -0,0 +1,24 @@
import * as github from '@actions/github'
// Centralize all Octokit references by re-exporting
export {Octokit} from '@octokit/rest'
export interface OctokitOptions {
baseUrl?: string
userAgent?: string
}
export function getOctokit(
authToken: string,
opts: OctokitOptions
): github.GitHub {
const options: OctokitOptions = {
baseUrl: 'https://api.github.com'
}
if (opts.userAgent) {
options.userAgent = opts.userAgent
}
return new github.GitHub(authToken, options)
}
+25 -24
View File
@@ -1,50 +1,51 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars /* eslint-disable @typescript-eslint/no-unused-vars */
import {from, Observable, merge, throwError, of} from 'rxjs' import {from, Observable, merge, throwError, of} from 'rxjs'
import {catchError, map, tap} from 'rxjs/operators' import {catchError, map, tap} from 'rxjs/operators'
import {graphql} from './graphql' import {Octokit} from '@octokit/rest'
import {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types'
let deleted = 0 let deleted = 0
type PackageType = RestEndpointMethodTypes['packages']['getAllPackageVersionsForPackageOwnedByUser']['parameters']['package_type']
export interface DeletePackageVersionMutationResponse {
deletePackageVersion: {
success: boolean
}
}
const mutation = `
mutation deletePackageVersion($packageVersionId: ID!) {
deletePackageVersion(input: {packageVersionId: $packageVersionId}) {
success
}
}`
export function deletePackageVersion( export function deletePackageVersion(
packageVersionId: string, packageVersionId: string,
owner: string,
packageName: string,
packageType: string,
token: string token: string
): Observable<boolean> { ): Observable<boolean> {
const octokit = new Octokit({
auth: token
})
const package_version_id = +packageVersionId
const package_type: PackageType = packageType as PackageType
deleted += 1 deleted += 1
return from( return from(
graphql(token, mutation, { octokit.rest.packages.deletePackageVersionForUser({
packageVersionId, package_type,
headers: { package_name: packageName,
Accept: 'application/vnd.github.package-deletes-preview+json' username: owner,
} package_version_id
}) as Promise<DeletePackageVersionMutationResponse> })
).pipe( ).pipe(
catchError(err => { catchError(err => {
const msg = 'delete version mutation failed.' const msg = 'delete version API failed.'
return throwError( return throwError(
err.errors && err.errors.length > 0 err.errors && err.errors.length > 0
? `${msg} ${err.errors[0].message}` ? `${msg} ${err.errors[0].message}`
: `${msg} ${err.message} \n${deleted - 1} versions deleted till now.` : `${msg} ${err.message} \n${deleted - 1} versions deleted till now.`
) )
}), }),
map(response => response.deletePackageVersion.success) map(response => response.status === 204)
) )
} }
export function deletePackageVersions( export function deletePackageVersions(
packageVersionIds: string[], packageVersionIds: string[],
owner: string,
packageName: string,
packageType: string,
token: string token: string
): Observable<boolean> { ): Observable<boolean> {
if (packageVersionIds.length === 0) { if (packageVersionIds.length === 0) {
@@ -52,7 +53,7 @@ export function deletePackageVersions(
} }
const deletes = packageVersionIds.map(id => const deletes = packageVersionIds.map(id =>
deletePackageVersion(id, token).pipe( deletePackageVersion(id, owner, packageName, packageType, token).pipe(
tap(result => { tap(result => {
if (!result) { if (!result) {
console.log(`version with id: ${id}, not deleted`) console.log(`version with id: ${id}, not deleted`)
+49 -173
View File
@@ -1,193 +1,69 @@
// eslint-disable-next-line @typescript-eslint/no-unused-vars /* eslint-disable @typescript-eslint/no-unused-vars */
import {GraphQlQueryResponse} from '@octokit/graphql/dist-types/types' import {from, Observable, merge, throwError, of} from 'rxjs'
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import {Observable, from, throwError} from 'rxjs'
import {catchError, map} from 'rxjs/operators' import {catchError, map} from 'rxjs/operators'
import {graphql} from './graphql' import {Octokit} from '@octokit/rest'
import {RestEndpointMethodTypes} from '@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types'
export interface VersionInfo { export interface RestVersionInfo {
id: string id: number
version: string version: string
created_at: string
} }
export interface QueryInfo { export interface RestQueryInfo {
versions: VersionInfo[] versions: RestVersionInfo[]
cursor: string page: number
paginate: boolean paginate: boolean
totalCount: number totalCount: number
} }
export interface GetVersionsQueryResponse { type PackageType = RestEndpointMethodTypes['packages']['getAllPackageVersionsForPackageOwnedByUser']['parameters']['package_type']
repository: { type GetVersionsResponse = RestEndpointMethodTypes['packages']['getAllPackageVersionsForPackageOwnedByUser']['response']['data']
packages: {
edges: {
node: {
name: string
versions: {
totalCount: number
edges: {node: VersionInfo}[]
pageInfo: {
startCursor: string
hasPreviousPage: boolean
}
}
}
}[]
}
}
}
const query = `
query getVersions($owner: String!, $repo: String!, $package: String!, $last: Int!) {
repository(owner: $owner, name: $repo) {
packages(first: 1, names: [$package]) {
edges {
node {
name
versions(last: $last) {
totalCount
edges {
node {
id
version
}
}
pageInfo {
startCursor
hasPreviousPage
}
}
}
}
}
}
}`
const Paginatequery = `
query getVersions($owner: String!, $repo: String!, $package: String!, $last: Int!, $before: String!) {
repository(owner: $owner, name: $repo) {
packages(first: 1, names: [$package]) {
edges {
node {
name
versions(last: $last, before: $before) {
totalCount
edges {
node {
id
version
}
}
pageInfo{
startCursor
hasPreviousPage
}
}
}
}
}
}
}`
export function queryForOldestVersions(
owner: string,
repo: string,
packageName: string,
numVersions: number,
startCursor: string,
token: string
): Observable<GetVersionsQueryResponse> {
if (startCursor === '') {
return from(
graphql(token, query, {
owner,
repo,
package: packageName,
last: numVersions,
headers: {
Accept: 'application/vnd.github.packages-preview+json'
}
}) as Promise<GetVersionsQueryResponse>
).pipe(
catchError((err: GraphQlQueryResponse<unknown>) => {
const msg = 'query for oldest version failed.'
return throwError(
err.errors && err.errors.length > 0
? `${msg} ${err.errors[0].message}`
: `${msg} verify input parameters are correct`
)
})
)
} else {
return from(
graphql(token, Paginatequery, {
owner,
repo,
package: packageName,
last: numVersions,
before: startCursor,
headers: {
Accept: 'application/vnd.github.packages-preview+json'
}
}) as Promise<GetVersionsQueryResponse>
).pipe(
catchError((err: GraphQlQueryResponse<unknown>) => {
const msg = 'query for oldest version failed.'
return throwError(
err.errors && err.errors.length > 0
? `${msg} ${err.errors[0].message}`
: `${msg} verify input parameters are correct`
)
})
)
}
}
export function getOldestVersions( export function getOldestVersions(
owner: string, owner: string,
repo: string,
packageName: string, packageName: string,
packageType: string,
numVersions: number, numVersions: number,
startCursor: string, page: number,
token: string token: string
): Observable<QueryInfo> { ): Observable<RestQueryInfo> {
return queryForOldestVersions( const octokit = new Octokit({
owner, auth: token
repo, })
packageName, const package_type: PackageType = packageType as PackageType
numVersions,
startCursor, return from(
token octokit.rest.packages.getAllPackageVersionsForPackageOwnedByUser({
package_type,
package_name: packageName,
username: owner,
per_page: numVersions,
page
})
).pipe( ).pipe(
map(result => { catchError(err => {
let r: QueryInfo const msg = 'get versions API failed.'
if (result.repository.packages.edges.length < 1) { return throwError(
console.log( err.errors && err.errors.length > 0
`package: ${packageName} not found for owner: ${owner} in repo: ${repo}` ? `${msg} ${err.errors[0].message}`
) : `${msg} ${err.message}`
r = { )
versions: [] as VersionInfo[], }),
cursor: '', map(response => {
paginate: false, const resp = {
totalCount: 0 versions: response.data.map((version: GetVersionsResponse[0]) => {
} return {
return r id: version.id,
version: version.name,
created_at: version.created_at
}
}),
page,
paginate: response.data.length === numVersions,
totalCount: response.data.length
} }
return resp
const versions = result.repository.packages.edges[0].node.versions.edges
const pages = result.repository.packages.edges[0].node.versions.pageInfo
const count = result.repository.packages.edges[0].node.versions.totalCount
r = {
versions: versions
.map(value => ({id: value.node.id, version: value.node.version}))
.reverse(),
cursor: pages.startCursor,
paginate: pages.hasPreviousPage,
totalCount: count
}
return r
}) })
) )
} }