🔧 Chore: update contributing and contributors

This commit is contained in:
Cell
2022-04-15 21:39:58 +08:00
parent 2dcb180698
commit 438d086398
6 changed files with 359 additions and 9 deletions
+4
View File
@@ -10,3 +10,7 @@ updates:
schedule:
interval: "monthly"
open-pull-requests-limit: 1000
assignees:
- "Lruihao"
labels:
- "dependencies"
+23
View File
@@ -0,0 +1,23 @@
name: Generate Contribute List
on:
push:
branches:
- master
jobs:
contrib-readme-job:
runs-on: ubuntu-latest
name: A job to automate contribute list in contributors.md file
steps:
- name: First Contribution Check
id: first-check
uses: sukki37/first-contribution-check-action@v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }}
- name: Contribute List
uses: akhilmhdh/contributors-readme-action@master
if: ${{ steps.first-check.outputs.isNewContributor == 'true' }}
with:
readme_path: "contributors.md"
image_size: 100
env:
GITHUB_TOKEN: ${{ secrets.CONTRIBUTORS_TOKEN }}