Skip to content

Commit

Permalink
Added additional job to change name if run is scheduled
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Jun 27, 2023
1 parent 20a3dd9 commit 7a5d80c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_custom_cl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ jobs:
id: set_job_name
run: |

Check failure on line 141 in .github/workflows/e2e_custom_cl.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_custom_cl.yml#L141

shellcheck reported issue in this script: SC2086:info:2:63: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/e2e_custom_cl.yml:141:9: shellcheck reported issue in this script: SC2086:info:2:63: Double quote to prevent globbing and word splitting [shellcheck]

Check failure on line 141 in .github/workflows/e2e_custom_cl.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_custom_cl.yml#L141

shellcheck reported issue in this script: SC2086:info:4:53: Double quote to prevent globbing and word splitting [shellcheck]
Raw output
.github/workflows/e2e_custom_cl.yml:141:9: shellcheck reported issue in this script: SC2086:info:4:53: Double quote to prevent globbing and word splitting [shellcheck]
if [[ "${{ github.event_name }}" == "schedule" ]]; then
echo "job_name='Simulated E2E Custom Run Smoke Tests'" >> $GITHUB_ENV
echo "job_name=\"Simulated E2E Custom Run Smoke Tests\"" >> $GITHUB_ENV
else
echo "job_name='E2E Custom Run Smoke Tests'" >> $GITHUB_ENV
echo "job_name=\"E2E Custom Run Smoke Tests\"" >> $GITHUB_ENV
fi
e2e_custom_run_smoke_tests:
Expand Down

0 comments on commit 7a5d80c

Please sign in to comment.