From 6ef6b323256220a5a84b6bc3ad7d089ea4654af4 Mon Sep 17 00:00:00 2001 From: neon_arch Date: Mon, 29 May 2023 19:45:00 +0300 Subject: [PATCH] ci: add CI to automate the generation of contributors list --- .github/workflows/contributors.yml | 16 ++++++++++++++++ 1 file changed, 16 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 0000000..bed59af --- /dev/null +++ b/.github/workflows/contributors.yml @@ -0,0 +1,16 @@ +name: Contributors +on: + schedule: + - cron: '0 1 * * *' # At 01:00 on every day. + push: + branches: + - rolling +jobs: + contributors: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + round: true + svgPath: ../../images/contributors_list.svg