Skip to content

Commit

Permalink
fix(*): update the workflow indetation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayush8923 committed Nov 25, 2024
1 parent 4efc8a5 commit 9e28d8b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/sync-translations-poeditor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,11 @@ jobs:
if (pulls.data.length < 1) {
const diff = await github.rest.repos.compareCommits({
owner,
repo,
base: baseBranch,
head: headBranch,
});
owner,
repo,
base: baseBranch,
head: headBranch,
});
if (diff.data.commits.length === 0) {
return;
Expand All @@ -157,7 +157,7 @@ jobs:
head: headBranch,
base: baseBranch,
body: [
'### Description of changes',
"### Description of changes",
'This PR updates translations from POEditor.',
'Generated by GitHub Actions.'
].join('\n'),
Expand All @@ -169,8 +169,8 @@ jobs:
issue_number: result.data.number,
labels: ['feature', 'automated pr'],
});
}
else {
} else {
const existingPR = pulls.data[0];
await github.rest.pulls.update({
owner: owner,
Expand Down

0 comments on commit 9e28d8b

Please sign in to comment.