From 0af3f605943db8f28a6b355f6a0a2f7459fe30f1 Mon Sep 17 00:00:00 2001 From: Michael Mayer Date: Tue, 10 May 2022 20:48:26 +0200 Subject: [PATCH] GitHub: Add contributors.yml action (experimental) --- .github/workflows/contributors.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/contributors.yml diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml new file mode 100644 index 000000000..858e994a6 --- /dev/null +++ b/.github/workflows/contributors.yml @@ -0,0 +1,22 @@ +name: Contributors +on: + schedule: + - cron: '0 1 * * 0' # At 01:00 on Sunday. + push: + branches: + - develop +jobs: + contributors: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + svgPath: 'assets/static/img/contributors.svg' + svgWidth: 800 + avatarSize: 35 + avatarMargin: 5 + affiliation: 'all' + round: false + sort: true + commitMessage: 'CI: Update contributors.svg' \ No newline at end of file