Skip to content

Commit

Permalink
pr-1-ci.yml: Changed double to single quotes for comments to allow co…
Browse files Browse the repository at this point in the history
…de formatting
  • Loading branch information
CodeGat committed Feb 12, 2024
1 parent 52bd32a commit 450aff3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-1-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,15 @@ jobs:
:white_check_mark: The Bitwise Reproducibility check succeeded when comparing against `${{ needs.check-checksum.outputs.compared-checksum-version }}` for this `Release` config. :white_check_mark:
For further information, the experiment can be found on Gadi at ${{ needs.repro-ci.outputs.experiment-location }}, and the test results at ${{ needs.check-checksum.outputs.check-run-url }}.
Consider bumping the minor version of `access-om2-configs` - to bump the version, comment `!bump minor`. The meaning of these version bumps is explained in the README.md, under `Config Tags`.
run: gh pr comment --body "${{ env.BODY }}"
run: gh pr comment --body '${{ env.BODY }}'

- name: Successful Dev Comment
if: needs.check-checksum.outputs.result == 'pass' && startsWith(github.base_ref, 'dev-')
env:
BODY: |
:white_check_mark: The Bitwise Reproducibility check succeeded when comparing against `${{ needs.check-checksum.outputs.compared-checksum-version }}` for this `Dev` config. :white_check_mark:
For further information, the experiment can be found on Gadi at ${{ needs.repro-ci.outputs.experiment-location }}, and the test results at ${{ needs.check-checksum.outputs.check-run-url }}.
run: gh pr comment --body "${{ env.BODY }}"
run: gh pr comment --body '${{ env.BODY }}'

- name: Failed Release Comment
if: needs.check-checksum.outputs.result == 'fail' && startsWith(github.base_ref, 'release-')
Expand All @@ -142,12 +142,12 @@ jobs:
:x: The Bitwise Reproducibility check failed when comparing against `${{ needs.check-checksum.outputs.compared-checksum-version }}` for this `Release` config. :x:
For further information, the experiment can be found on Gadi at ${{ needs.repro-ci.outputs.experiment-location }}, and the test results at ${{ needs.check-checksum.outputs.check-run-url }}.
You must bump the major version of `access-om2-configs` before this PR is merged to account for this - to bump the version, comment `!bump major`. The meaning of these version bumps is explained in the README.md, under `Config Tags`.
run: gh pr comment --body "${{ env.BODY }}"
run: gh pr comment --body '${{ env.BODY }}'

- name: Failed Dev Comment
if: needs.check-checksum.outputs.result == 'fail' && startsWith(github.base_ref, 'dev-')
env:
BODY: |
:warning: The Bitwise Reproducibility check failed when comparing against `${{ needs.check-checksum.outputs.compared-checksum-version }}` for this `Dev` config. :warning:
For further information, the experiment can be found on Gadi at ${{ needs.repro-ci.outputs.experiment-location }}, and the test results at ${{ needs.check-checksum.outputs.check-run-url }}.
run: gh pr comment --body "${{ env.BODY }}"
run: gh pr comment --body '${{ env.BODY }}'

0 comments on commit 450aff3

Please sign in to comment.