Skip to content

Commit e00fe4f

Browse files
committed
✏️ Fix syntax error in heads.yml
1 parent 64ff836 commit e00fe4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/heads.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,17 @@ jobs:
7777
# Raw `bundle` will use the BUNDLE_GEMFILE set to matrix.gemfile (i.e. Appraisal.root)
7878
# We need to do this first to get appraisal installed.
7979
# NOTE: This does not use the primary Gemfile at all.
80-
- name: Install Root Appraisal
80+
- name: "Install Root Appraisal"
8181
run: bundle
8282

83-
- name: [Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
83+
- name: "[Attempt 1] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
8484
id: bundleAttempt1
8585
run: bundle exec appraisal ${{ matrix.appraisal }} bundle
8686
# Continue to the next step on failure
8787
continue-on-error: true
8888

8989
# Effectively an automatic retry of the previous step.
90-
- name: [Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}
90+
- name: "[Attempt 2] Appraisal for ${{ matrix.ruby }}@${{ matrix.appraisal }}"
9191
id: bundleAttempt2
9292
# If bundleAttempt1 failed, try again here; Otherwise skip.
9393
if: steps.bundleAttempt1.outcome == 'failure'

0 commit comments

Comments
 (0)