From 10be9b58ced9675a6cb17915e2c458d21e0c9609 Mon Sep 17 00:00:00 2001 From: Sylvia van Os Date: Wed, 25 Aug 2021 20:37:24 +0200 Subject: [PATCH] Write contributors to file --- .github/workflows/contributors-to-file | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/contributors-to-file diff --git a/.github/workflows/contributors-to-file b/.github/workflows/contributors-to-file new file mode 100644 index 000000000..bcbe326a1 --- /dev/null +++ b/.github/workflows/contributors-to-file @@ -0,0 +1,16 @@ +jobs: + contributors_to_file: + runs-on: ubuntu-latest + name: Write contributors to file + steps: + - name: Checkout repo + id: checkout + uses: actions/checkout@v2 + - name: Update contributors + id: update_contributors + uses: TheLastProject/contributors-to-file-action@v1 + with: + file_in_repo: app/src/main/res/raw/contributors.txt +on: + schedule: + - cron: '0 0 * * *'