Skip to content

Commit

Permalink
Merge pull request #136 from sp-yduck/improve/ci
Browse files Browse the repository at this point in the history
use single quote
  • Loading branch information
sp-yduck authored Nov 11, 2023
2 parents eeef485 + 63bd544 commit 1546b64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
coverage:
name: unit test coverage
runs-on: ubuntu-latest
if: github.event_name == "push" || contains(github.event.comment.body, "/unit-test")
if: github.event_name == 'push' || contains(github.event.comment.body, '/unit-test')
steps:
- uses: actions/checkout@master
- run: "make unit-test-cover"
Expand All @@ -27,7 +27,7 @@ jobs:
build:
name: docker build & push
runs-on: ubuntu-latest
if: github.event_name == "push" || contains(github.event.comment.body, "/buid-push")
if: github.event_name == 'push' || contains(github.event.comment.body, '/buid-push')
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:
result:
name: report to pr comment
runs-on: ubunt-latest
if: github.event_name == "issue_comment" && ${{ github.event.issue.pull_request }}
if: github.event_name == 'issue_comment' && ${{ github.event.issue.pull_request }}
steps:
- run: |
gh pr comment ${{ github.event.issue.number }} -b "[Actions: CI] Check result [here](https://github.com/sp-yduck/cluster-api-provider-proxmox/actions/runs/${{ github.run_number }})"

0 comments on commit 1546b64

Please sign in to comment.