Merge pull request #1 from mtrogman/buildOut #2
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: Update contributors | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
update_contributors: | |
name: Add all Contributors to README | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/[email protected] | |
with: | |
fetch-depth: '0' | |
- uses: BobAnkh/add-contributors@master | |
with: | |
CONTRIBUTOR: '### Contributors' | |
COLUMN_PER_ROW: '4' | |
ACCESS_TOKEN: ${{secrets.AC_PAT}} | |
IMG_WIDTH: '50' | |
FONT_SIZE: '14' | |
PATH: '/README.md' | |
COMMIT_MESSAGE: 'docs(README): update contributors' | |
AVATAR_SHAPE: 'round' |