chore: minor typo (#5) #21
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: autofix.ci # Required (https://autofix.ci/setup) | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
jobs: | |
update-contributors: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current branch | |
uses: actions/checkout@v4 | |
- name: Setup (Install Node, pnpm) | |
uses: ./.github/actions/setup | |
with: | |
install-deps: false | |
- name: Update contributors | |
run: pnpm run automd | |
- name: Push Updates | |
uses: autofix-ci/[email protected] | |
with: | |
commit-message: 'chore: update contributors' |