Skip to content

Commit b75fd4e

Browse files
authored
Merge pull request #599 from instructlab/ihrachyshka-fix-indent
ci: Fix incorrect indent in workflow steps
2 parents 2a1e9b6 + 0721594 commit b75fd4e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/actions/run-e2e/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ runs:
8888
shell: bash
8989
run: |
9090
gh pr comment "${{ steps.check_pr.outputs.pr_or_branch }}" -b "${{ github.workflow }} workflow launched on this PR: [View run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})"
91-
env:
92-
GH_TOKEN: ${{ inputs.gh-token }}
91+
env:
92+
GH_TOKEN: ${{ inputs.gh-token }}
9393

9494
- name: Fetch and checkout PR
9595
if: steps.check_pr.outputs.is_pr == 'true'
@@ -193,17 +193,17 @@ runs:
193193
shell: bash
194194
run: |
195195
gh pr comment "${{ steps.check_pr.outputs.pr_or_branch }}" -b "e2e workflow failed on this PR: [View run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}), please investigate."
196-
env:
197-
GH_TOKEN: ${{ inputs.gh-token }}
196+
env:
197+
GH_TOKEN: ${{ inputs.gh-token }}
198198

199199
- name: Add comment to PR if the workflow succeeded
200200
if: success() && steps.check_pr.outputs.is_pr == 'true'
201201
working-directory: ./training
202202
shell: bash
203203
run: |
204204
gh pr comment "${{ steps.check_pr.outputs.pr_or_branch }}" -b "e2e workflow succeeded on this PR: [View run](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}), congrats!"
205-
env:
206-
GH_TOKEN: ${{ inputs.gh-token }}
205+
env:
206+
GH_TOKEN: ${{ inputs.gh-token }}
207207

208208
- name: Send Discord notification for failure
209209
if: failure() && steps.check_pr.outputs.is_pr == 'false'

0 commit comments

Comments
 (0)