chore: use monospace on numbers #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Run benchmark' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: Checkout PR using gh-cli | |
run: | | |
gh pr checkout ${{ github.event.number }} | |
# Create new file to simulate change and test it's committing/pushing | |
- name: Create new file | |
run: | | |
echo "test" > test.txt | |
- name: Commit and push changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "Update performance results in README.md" |