From def8fca33a8ec0f74e7f30023f067c2608f10420 Mon Sep 17 00:00:00 2001 From: Nicholas Wallace Date: Fri, 11 Sep 2026 09:52:22 -0700 Subject: [PATCH] initial translatior credit workflow --- .github/workflows/contribute-credits.yml | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/contribute-credits.yml diff --git a/.github/workflows/contribute-credits.yml b/.github/workflows/contribute-credits.yml new file mode 100644 index 000000000..e2eac4a42 --- /dev/null +++ b/.github/workflows/contribute-credits.yml @@ -0,0 +1,26 @@ +name: Prepare contributor credits + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + release-notes: + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - id: translator-credits + uses: audiobookshelf/get-translator-credits@v1 + with: + token: ${{ github.token }} + + - name: Show translator credits + run: | + printf '%s\\n' "${{ steps.translator-credits.outputs.credits }}"