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 diff --git a/latest-version.sh b/latest-version.sh index a96b078..9209d86 100755 --- a/latest-version.sh +++ b/latest-version.sh @@ -1,4 +1,4 @@ -#!/bin/zsh +#!/bin/bash REPO="taglib/taglib"