mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-09-13 21:31:57 +02:00
27 lines
537 B
YAML
27 lines
537 B
YAML
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 }}"
|