1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-10 05:01:13 +02:00

fix(release-please): paginate PRs by updated (#192)

This commit is contained in:
Benjamin E. Coe
2021-01-15 08:56:55 -08:00
committed by GitHub
parent 88a82e1f95
commit 92f9818112
2 changed files with 17 additions and 17 deletions

32
package-lock.json generated
View File

@@ -146,9 +146,9 @@
}
},
"@octokit/openapi-types": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-2.2.0.tgz",
"integrity": "sha512-274lNUDonw10kT8wHg8fCcUc1ZjZHbWv0/TbAwb0ojhBQqZYc1cQ/4yqTVTtPMDeZ//g7xVEYe/s3vURkRghPg=="
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-2.3.0.tgz",
"integrity": "sha512-Own8lHWVi5eEfLOnsIzAx16BoRbpkzac3QDUCxIqYMf4bjz+AGpv17UfRn1Va4lVmjwOpvZglpFI3mmxuQ+sIQ=="
},
"@octokit/plugin-paginate-rest": {
"version": "2.7.0",
@@ -209,11 +209,11 @@
}
},
"@octokit/types": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.2.1.tgz",
"integrity": "sha512-jHs9OECOiZxuEzxMZcXmqrEO8GYraHF+UzNVH2ACYh8e/Y7YoT+hUf9ldvVd6zIvWv4p3NdxbQ0xx3ku5BnSiA==",
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.3.0.tgz",
"integrity": "sha512-OYlk5Di9daD0x948qhMqIgq6XLkm/2w0lgzibDgqrf+LfuAPL12WQaF/N2dO6ipOMW7Xe1jMattZiEd2bRR4Rg==",
"requires": {
"@octokit/openapi-types": "^2.2.0",
"@octokit/openapi-types": "^2.3.0",
"@types/node": ">= 8"
}
},
@@ -285,9 +285,9 @@
"integrity": "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg=="
},
"@types/node": {
"version": "14.14.20",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.20.tgz",
"integrity": "sha512-Y93R97Ouif9JEOWPIUyU+eyIdyRqQR0I8Ez1dzku4hDx34NWh4HbtIc3WNzwB1Y9ULvNGeu5B8h8bVL5cAk4/A=="
"version": "14.14.21",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.21.tgz",
"integrity": "sha512-cHYfKsnwllYhjOzuC5q1VpguABBeecUp24yFluHpn/BQaVxB1CuQ1FSRZCzrPxrkIfWISXV2LbeoBthLWg0+0A=="
},
"@types/normalize-package-data": {
"version": "2.4.0",
@@ -2761,9 +2761,9 @@
}
},
"pino-std-serializers": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-3.1.0.tgz",
"integrity": "sha512-Fk1pxhX6tuW4ozRDFw5Mz/IHQV5wXYXZwjG/gOpTNPCbYEMeNW9VnKAEu1428CwAQVupFruOr1vkC/ufmcwedA=="
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-3.1.1.tgz",
"integrity": "sha512-Ud4+WzgEr/swOlfQdkxqKP2hlwuQlIqQ5YwYpo9MczNg2mpsKKyKgwQXW5KnP5tgH3/Cy9QRhAhLM8k1K+gfnA=="
},
"pkg-conf": {
"version": "3.1.0",
@@ -3046,9 +3046,9 @@
"dev": true
},
"release-please": {
"version": "9.2.0",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-9.2.0.tgz",
"integrity": "sha512-FoTTOODxbnptIfXdw2YsEsprBmsKohW1hzHBOx00zzoRyXg/utcJEtWesH1C4cs4Bc4jv0y0nX3O2QTEJQce1w==",
"version": "9.3.0-beta.0",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-9.3.0-beta.0.tgz",
"integrity": "sha512-G7fyxTy+VNlW4qwDP9hUoY3P9J7jyUOyyLuYmmvW2Xc/tvsAY6VS865A6UgeDzDND6YFy2ne3DtGOU8y/OgePQ==",
"requires": {
"@conventional-commits/parser": "^0.4.1",
"@iarna/toml": "^2.2.5",

View File

@@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"release-please": "^9.2.0"
"release-please": "^9.3.0-beta.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",