Skip to content

Commit f997cc1

Browse files
Copilotanxiangsir
andcommitted
Add contributors table and auto-update GitHub Actions workflow
Co-authored-by: anxiangsir <31175974+anxiangsir@users.noreply.github.com>
1 parent c1e091d commit f997cc1

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

.github/workflows/contributors.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# This workflow automatically updates the Contributors table in README.md.
2+
#
3+
# Token permissions:
4+
# Uses the built-in GITHUB_TOKEN — no additional Repository Secrets are needed.
5+
# The workflow declares `contents: write` so the token can commit the updated README.
6+
#
7+
# Ban list:
8+
# Users to exclude are listed in the README marker comment (see the
9+
# "<!-- readme: contributors/... -start -->" line). To ban a new user,
10+
# append /username to that comment.
11+
12+
name: Update Contributors Table
13+
14+
on:
15+
push:
16+
branches:
17+
- main
18+
workflow_dispatch:
19+
20+
permissions:
21+
contents: write
22+
23+
jobs:
24+
update-contributors:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- name: Checkout repository
28+
uses: actions/checkout@v4
29+
30+
- name: Update contributors table
31+
uses: akhilmhdh/contributors-readme-action@v2.3.2
32+
env:
33+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34+
with:
35+
image_size: 80
36+
columns_per_row: 6
37+
readme_path: README.md

README.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,47 @@ For detailed usage, see the [LLaVA-Next README](llava_next/README.md).
479479

480480
## 👥 Contributors
481481

482-
<!-- Add contributor list here -->
482+
<!-- readme: contributors/Copilot/copilot-swe-agent/dependabot/github-actions/allcontributors/imgbot/snyk-bot/renovate -start -->
483+
<table>
484+
<tr>
485+
<td align="center">
486+
<a href="https://github.com/Luodian">
487+
<img src="https://avatars.githubusercontent.com/Luodian?v=4" width="80;" alt="Luodian"/>
488+
<br />
489+
<sub><b>Luodian</b></sub>
490+
</a>
491+
</td>
492+
<td align="center">
493+
<a href="https://github.com/anxiangsir">
494+
<img src="https://avatars.githubusercontent.com/anxiangsir?v=4" width="80;" alt="anxiangsir"/>
495+
<br />
496+
<sub><b>anxiangsir</b></sub>
497+
</a>
498+
</td>
499+
<td align="center">
500+
<a href="https://github.com/FeilongTangmonash">
501+
<img src="https://avatars.githubusercontent.com/FeilongTangmonash?v=4" width="80;" alt="FeilongTangmonash"/>
502+
<br />
503+
<sub><b>FeilongTangmonash</b></sub>
504+
</a>
505+
</td>
506+
<td align="center">
507+
<a href="https://github.com/jiankangdeng">
508+
<img src="https://avatars.githubusercontent.com/jiankangdeng?v=4" width="80;" alt="jiankangdeng"/>
509+
<br />
510+
<sub><b>jiankangdeng</b></sub>
511+
</a>
512+
</td>
513+
<td align="center">
514+
<a href="https://github.com/yiyexy">
515+
<img src="https://avatars.githubusercontent.com/yiyexy?v=4" width="80;" alt="yiyexy"/>
516+
<br />
517+
<sub><b>yiyexy</b></sub>
518+
</a>
519+
</td>
520+
</tr>
521+
</table>
522+
<!-- readme: contributors/Copilot/copilot-swe-agent/dependabot/github-actions/allcontributors/imgbot/snyk-bot/renovate -end -->
483523

484524
---
485525

0 commit comments

Comments
 (0)