Skip to content

Commit 0ff6625

Browse files
Allow GitHub Action "Update languages" workflow to bypass reviews
Normally, a PR requires manual review before being merged into master. Skip this to enable a fully automated workflow.
1 parent 0acf4a3 commit 0ff6625

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/languages.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
gh pr create --fill --base ${baseBranch}
7777
# Avoid occasional GitHub error "Pull request Pull request is in clean status".
7878
sleep 1s
79-
gh pr merge --auto --rebase --delete-branch
79+
# Skip the check for manual revisions in the merge process.
80+
gh pr merge --admin --rebase --delete-branch
8081
8182
- name: Release base branch (if base branch was also previously released)
8283
if: ${{ steps.update-language-files.outputs.CHANGED_LANGUAGES && steps.update-language-files.outputs.RELEASED_BASE_BRANCH == 1 }}

0 commit comments

Comments
 (0)