This repository was archived by the owner on May 21, 2026. It is now read-only.
Fix dependency issue in history - export types for users to import so… #45
This file contains hidden or 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: Contributors | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| update-contributors: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Generate Contributors | |
| uses: BobAnkh/add-contributors@master | |
| with: | |
| CONTRIBUTOR: '## 👥 Contributors' | |
| COLUMN_PER_ROW: '6' | |
| ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| IMG_WIDTH: '100' | |
| FONT_SIZE: '14' | |
| PATH: README.md | |
| COMMIT_MESSAGE: 'docs(README): update contributors' | |
| AVATAR_SHAPE: round |