Skip to content

Commit

Permalink
Add GH Action to check for new TagLib versions
Browse files Browse the repository at this point in the history
  • Loading branch information
deluan committed Oct 16, 2024
1 parent 435437d commit c42b932
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check-version.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c42b932

Please sign in to comment.