Skip to content

Commit

Permalink
adds a github action to update contributors automatically (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
petethepig authored Mar 13, 2021
1 parent f956810 commit a686fe7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-contributos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update Contributors in README

on:
push:
branches: [main]

jobs:
php-cs-fixer:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}

- name: Install dependencies
run: rake install-web-dependencies

- name: Update contributors
run: rake update-contributors

- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Updates the list of contributors in README
file_pattern: README.md

0 comments on commit a686fe7

Please sign in to comment.