From 529ead02b53c436dd7ccf5416e820139d27812d2 Mon Sep 17 00:00:00 2001 From: Quan Tran Date: Sun, 5 May 2024 11:54:10 +0700 Subject: [PATCH] chore: Test ci --- .github/workflows/test-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/test-ci.yml diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml new file mode 100644 index 0000000..0c1db79 --- /dev/null +++ b/.github/workflows/test-ci.yml @@ -0,0 +1,22 @@ +name: Update AUTHORS +on: + push: + branches: + - main +jobs: + updateAuthors: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Update AUTHORS + run: | + git log --format='%aN <%aE>%n%cN <%cE>' | sort -u > AUTHORS + - name: Create Pull Request + uses: peter-evans/create-pull-request@v6 + with: + commit-message: update authors + title: Update AUTHORS + body: Credit new contributors by updating AUTHORS + branch: update-authors