Skip to content

Commit

Permalink
CI: Add verbosity while running submit-job action
Browse files Browse the repository at this point in the history
  • Loading branch information
AnirudhDagar authored May 6, 2023
1 parent e271340 commit 0a505c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/submit-job/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
if: ${{ github.event_name == 'pull_request_target' && steps.check.outputs.permitted == 'true' }}
shell: bash
run: |
echo "Start submitting job"
echo "Start submitting job for PR Safe Scripts"
python ./ci/submit-job.py --job-type ${{ inputs.job-type }} \
--name ${{ inputs.job-name }}-PR#'${{ github.event.number }}' \
--source-ref '${{ github.event.pull_request.head.sha }}' \
Expand All @@ -81,7 +81,7 @@ runs:
if: ${{ github.event_name == 'pull_request_target' && steps.check.outputs.permitted != 'true' }}
shell: bash
run: |
echo "Start submitting job"
echo "Start submitting job for PR Unsafe Scripts"
python ./ci/submit-job.py --job-type ${{ inputs.job-type }} \
--name ${{ inputs.job-name }}-PR#'${{ github.event.number }}' \
--source-ref '${{ github.event.pull_request.head.sha }}' \
Expand Down

0 comments on commit 0a505c6

Please sign in to comment.