Skip to content

Commit d07d253

Browse files
authored
Merge pull request github#9550 from github/repo-sync
repo sync
2 parents 9bcc98e + a1c07c5 commit d07d253

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/staging-deploy-pr-docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,8 @@ jobs:
149149
const esm = require('esm')
150150
require = esm({})
151151
152-
const { default: createApp } = require('./scripts/create-app.js')
153-
const { default: parsePrUrl } = require('./scripts/parse-pr-url.js')
152+
const { default: createApp } = require('./script/create-app.js')
153+
const { default: parsePrUrl } = require('./script/parse-pr-url.js')
154154
155155
// This helper uses the `GITHUB_TOKEN` implicitly!
156156
// We're using our usual version of Octokit vs. the provided `github`

Diff for: .github/workflows/staging-deploy-pr.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
script: |
4747
const { CONTEXT_NAME, ACTIONS_RUN_LOG } = process.env
4848
const { owner, repo } = context.repo
49-
await github.repos.createStatus({
49+
await github.repos.createCommitStatus({
5050
owner,
5151
repo,
5252
sha: '${{ github.event.workflow_run.head_sha }}',
@@ -155,7 +155,7 @@ jobs:
155155
script: |
156156
const { CONTEXT_NAME, ACTIONS_RUN_LOG } = process.env
157157
const { owner, repo } = context.repo
158-
await github.repos.createStatus({
158+
await github.repos.createCommitStatus({
159159
owner,
160160
repo,
161161
sha: '${{ github.event.workflow_run.head_sha }}',
@@ -260,7 +260,7 @@ jobs:
260260
runId: context.runId
261261
})
262262
263-
await github.repos.createStatus({
263+
await github.repos.createCommitStatus({
264264
owner,
265265
repo,
266266
sha: '${{ github.event.workflow_run.head_sha }}',
@@ -294,7 +294,7 @@ jobs:
294294
script: |
295295
const { CONTEXT_NAME, ACTIONS_RUN_LOG } = process.env
296296
const { owner, repo } = context.repo
297-
await github.repos.createStatus({
297+
await github.repos.createCommitStatus({
298298
owner,
299299
repo,
300300
sha: '${{ github.event.workflow_run.head_sha }}',

0 commit comments

Comments
 (0)