From 0b2ffc06a43426445f20f3f325cba0cbd31766f7 Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Mon, 8 Feb 2021 23:36:03 +0900 Subject: [PATCH] Create contributors.yml --- .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..ad06001 --- /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: + - main + 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