From bc5cc531825bb5cbd81283d5c31c415dd4f6c0bb Mon Sep 17 00:00:00 2001 From: hahwul Date: Mon, 17 Jan 2022 00:20:40 +0900 Subject: [PATCH] Add contributors workflow --- .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..179ffb8 --- /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 \ No newline at end of file