Skip to content

Commit 54549c0

Browse files
committed
feat(ci): add nightly contributors update workflow
- Add Contributors section to README with placeholder comments - Create workflow that runs daily at midnight UTC - Uses akhilmhdh/contributors-readme-action to generate contributor grid - Shows 64px profile pictures, 8 per row - Commits include [skip ci] to avoid triggering builds - Can be manually triggered via Actions tab
1 parent abe2039 commit 54549c0

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/contributors.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Update Contributors
2+
3+
on:
4+
schedule:
5+
- cron: '0 0 * * *' # Run daily at midnight UTC
6+
workflow_dispatch: # Allow manual trigger
7+
8+
jobs:
9+
contributors:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Update contributors
17+
uses: akhilmhdh/contributors-readme-action@v2.3.2
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
with:
21+
image_size: 64
22+
columns_per_row: 8
23+
commit_message: 'docs: update contributors [skip ci]'

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,11 @@ npm run check # Run format, lint, and tests
112112

113113
Looking for something to work on? Check out [good first issues](https://github.com/dtvem/dtvem/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
114114

115+
## 👥 Contributors
116+
117+
<!-- readme: contributors -start -->
118+
<!-- readme: contributors -end -->
119+
115120
## 📄 License
116121

117122
MIT License - See [LICENSE](LICENSE) file for details

0 commit comments

Comments
 (0)