From ea3b7ed9dd8ae72d63d30e47859795163bd3e21c Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 3 Apr 2023 08:33:55 +1000 Subject: [PATCH] Generate Contributors SVG --- .github/workflows/contributors.yml | 17 +++++++++++++++++ 1 file changed, 17 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..6c0a5b740 --- /dev/null +++ b/.github/workflows/contributors.yml @@ -0,0 +1,17 @@ +name: Generate Contributors Image + +on: + schedule: + - cron: '0 1 * * 0' # At 01:00 on Sunday. + push: + branches: + - master + +jobs: + contributors: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + svgPath: website/static/img/contributors.svg