We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0387a6 commit 568ba92Copy full SHA for 568ba92
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@im-open/im-github-deployments",
3
- "version": "1.0.9",
+ "version": "1.0.10",
4
"main": "dist/index.esm.js",
5
"types": "dist/index.d.ts",
6
"license": "Apache-2.0",
src/api/index.ts
@@ -88,6 +88,7 @@ export class GithubDeploymentsApiClient implements GithubDeploymentsApi {
88
)
89
.filter(d => d.task === 'workflowdeploy')
90
.map(d => formatDeployments(d))
91
+ .filter(d => d.payload.entity === params.entity)
92
.sort((a, b) => (a.id > b.id ? 1 : -1));
93
94
return restDeployments;
0 commit comments