Skip to content

Commit a15897b

Browse files
authored
fix: add missing indentation
1 parent 0c17cc3 commit a15897b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/upstream-sync.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969
if(${{ steps.check-if-ahead.outputs.result }} == true) {
7070
const { repo, owner } = context.repo;
7171
const result = await github.rest.pulls.create({
72-
title: 'Synchronise ${{ inputs.release-series }} with ${{ steps.branch-name.outputs.result }}',
73-
owner,
74-
repo,
75-
head: '${{ steps.branch-name.outputs.result }}',
76-
base: '${{ format('{0}/{1}', env.downstream-prefix, inputs.release-series) }}',
77-
maintainer_can_modify: false,
78-
body: [
79-
'The changes from ${{ env.upstream-prefix }}/${{ inputs.release-series }} have been included in this automated PR'
80-
].join('\n')
81-
});
72+
title: 'Synchronise ${{ inputs.release-series }} with ${{ steps.branch-name.outputs.result }}',
73+
owner,
74+
repo,
75+
head: '${{ steps.branch-name.outputs.result }}',
76+
base: '${{ format('{0}/{1}', env.downstream-prefix, inputs.release-series) }}',
77+
maintainer_can_modify: false,
78+
body: [
79+
'The changes from ${{ env.upstream-prefix }}/${{ inputs.release-series }} have been included in this automated PR'
80+
].join('\n')
81+
});
8282
}

0 commit comments

Comments
 (0)