From 20d3d697a21d12fb1c529bbedc9574935abfa595 Mon Sep 17 00:00:00 2001 From: Spyros Date: Mon, 18 Sep 2023 22:05:54 +0300 Subject: [PATCH] workflow to keep our contributors up to date (#385) --- .github/workflows/add-contributors.yml | 23 +++++++++++++++++++++++ CONTRIBUTING.md | 6 +++++- 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/add-contributors.yml diff --git a/.github/workflows/add-contributors.yml b/.github/workflows/add-contributors.yml new file mode 100644 index 000000000..b0445478b --- /dev/null +++ b/.github/workflows/add-contributors.yml @@ -0,0 +1,23 @@ +name: Add contributors +on: + schedule: + - cron: '20 20 * * *' +# push: +# branches: +# - master + +jobs: + add-contributors: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: BobAnkh/add-contributors@master + with: + CONTRIBUTOR: '### Contributors' + COLUMN_PER_ROW: '6' + ACCESS_TOKEN: ${{secrets.GITHUB_TOKEN}} + IMG_WIDTH: '100' + FONT_SIZE: '14' + PATH: './CONTRIBUTING.md' + COMMIT_MESSAGE: 'docs(README): update contributors' + AVATAR_SHAPE: 'round' \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5d28c772d..5a8ab0f2f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -103,4 +103,8 @@ We use eslint and black to enforce style. `make lint` should fix most style prob * Use the imperative mood ("Move cursor to..." not "Moves cursor to...") * Limit the first line to 72 characters or less * Reference issues and pull requests liberally after the first line -* When only changing documentation, include `[ci skip]` in the commit title. \ No newline at end of file +* When only changing documentation, include `[ci skip]` in the commit title. + + + +### Contributors \ No newline at end of file