Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Oct 31, 2023
1 parent f750be7 commit e8058c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pr-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/github-script@v6
with:
script: |
if (${{ secrets.PRIVATE_KEY }} == "") {
if ("${{ secrets.PRIVATE_KEY }}" == "") {
core.setFailed('Failed to access PRIVATE_KEY secret')
}
- name: Comment on successful run
Expand Down Expand Up @@ -65,5 +65,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
- uses: boa-dev/criterion-compare-action@v3
with:
# Optional. Compare only this benchmark target
benchName: "fibonacci"
# Needed. The name of the branch to compare with
branchName: ${{ github.ref_name }}

0 comments on commit e8058c2

Please sign in to comment.