From 60570bd5b6a6f4042f6f730cd12b4eecf52913a2 Mon Sep 17 00:00:00 2001 From: moond4rk Date: Sun, 20 Dec 2020 15:14:35 +0800 Subject: [PATCH] add contributes workflow, resolve #55 --- .github/workflows/contributors.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..da90b3c --- /dev/null +++ b/.github/workflows/contributors.yml @@ -0,0 +1,21 @@ +name: Contributors +on: + schedule: + - cron: '0 1 * * 0' # At 01:00 on Sunday. + push: + branches: + - master + workflow_dispatch: + inputs: + logLevel: + description: 'manual run' + required: false + default: '' +jobs: + contributors: + runs-on: ubuntu-latest + steps: + - uses: bubkoo/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + round: true