Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 8c63614

Browse files
ci: Fix syntax (#1464)
1 parent 7a4bcfb commit 8c63614

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/sync-pr-ls.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
commit_sha = '${{ github.sha }}'
4444
}
4545
const getCommitResponse = await github.rest.repos.getCommit({
46-
pr_owner,
47-
pr_repo,
46+
owner: pr_owner,
47+
repo: pr_repo,
4848
ref: commit_sha
4949
});
5050
const result = await github.rest.repos.createDispatchEvent({

.github/workflows/sync-pr-lse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878
commit_sha = '${{ github.sha }}'
7979
}
8080
const getCommitResponse = await github.rest.repos.getCommit({
81-
pr_owner,
82-
pr_repo,
81+
owner: pr_owner,
82+
repo: pr_repo,
8383
ref: commit_sha
8484
});
8585
const result = await github.rest.repos.createDispatchEvent({

0 commit comments

Comments
 (0)