Skip to content

Commit ff5bb22

Browse files
fix(auto-merge): fix dry-run echo quoting (em dash → ASCII) (#75977)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent 8336ba5 commit ff5bb22

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/auto_merge.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Auto merge connector PRs Cron
22
# Dry-run mode is controlled by the org-level variable ENABLE_CONNECTOR_AUTO_MERGE.
33
# Set to "true" to enable real merges; any other value (or unset) runs in dry-run mode.
4+
# In dry-run mode, PRs are still approved and promoted from draft, but merges are skipped.
45
# Manage at: https://github.com/organizations/airbytehq/settings/variables/actions
56

67
on:
@@ -261,7 +262,7 @@ jobs:
261262
262263
- name: Dry-run notice
263264
if: steps.eligible.outputs.result == 'true' && vars.ENABLE_CONNECTOR_AUTO_MERGE != 'true'
264-
run: echo "::notice::DRY RUN would merge PR #$PR_NUMBER"
265+
run: echo "::notice::DRY RUN -- would merge PR #$PR_NUMBER"
265266

266267
# ---------- Job 3: Force merge (bypass CI checks) ----------
267268
force-merge:
@@ -382,4 +383,4 @@ jobs:
382383
383384
- name: Dry-run notice
384385
if: steps.eligible.outputs.result == 'true' && vars.ENABLE_CONNECTOR_AUTO_MERGE != 'true'
385-
run: echo "::notice::DRY RUN would force-merge PR #$PR_NUMBER"
386+
run: echo "::notice::DRY RUN -- would force-merge PR #$PR_NUMBER"

0 commit comments

Comments
 (0)