Skip to content

Commit 568ba92

Browse files
committed
Bug Fix: only show dashboard from repo for the specific entity
1 parent f0387a6 commit 568ba92

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@im-open/im-github-deployments",
3-
"version": "1.0.9",
3+
"version": "1.0.10",
44
"main": "dist/index.esm.js",
55
"types": "dist/index.d.ts",
66
"license": "Apache-2.0",

src/api/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export class GithubDeploymentsApiClient implements GithubDeploymentsApi {
8888
)
8989
.filter(d => d.task === 'workflowdeploy')
9090
.map(d => formatDeployments(d))
91+
.filter(d => d.payload.entity === params.entity)
9192
.sort((a, b) => (a.id > b.id ? 1 : -1));
9293

9394
return restDeployments;

0 commit comments

Comments
 (0)