From c42b93227cd4d855e0f53df96a60976f3c544099 Mon Sep 17 00:00:00 2001 From: Deluan Date: Wed, 16 Oct 2024 15:29:14 -0400 Subject: [PATCH] Add GH Action to check for new TagLib versions --- .github/workflows/check-version.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/check-version.yml diff --git a/.github/workflows/check-version.yml b/.github/workflows/check-version.yml new file mode 100644 index 0000000..9abd579 --- /dev/null +++ b/.github/workflows/check-version.yml @@ -0,0 +1,22 @@ +name: Check TagLib version +on: + workflow_dispatch: + schedule: + - cron: '0 7 * * *' +jobs: + update-translations: + runs-on: ubuntu-latest + if: ${{ github.repository_owner == 'navidrome' }} + steps: + - uses: actions/checkout@v4 + - run: make update + - name: Show changes, if any + run: | + git status --porcelain + git diff + - name: Create Pull Request + uses: peter-evans/create-pull-request@v7 + with: + commit-message: Update TagLib to latest version + title: Update TagLib to latest version + branch: update-taglib