Skip to content

Commit 27c7414

Browse files
committed
open-pr: do use the token, not a struct
In 36a514b (get-installation-access-token: return a struct, not just the token, 2023-02-13) we changed the way `get-installation-access-token` works and forgot to adjust `open-pr.yml`. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 09ec165 commit 27c7414

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/open-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
)
6666
6767
const getInstallationAccessToken = require('./get-installation-access-token')
68-
const accessToken = await getInstallationAccessToken(
68+
const { token: accessToken } = await getInstallationAccessToken(
6969
console,
7070
appId,
7171
privateKey,

0 commit comments

Comments
 (0)