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 b7b7d42
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion latest-version.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/zsh
#!/bin/bash

REPO="taglib/taglib"

Expand Down

0 comments on commit b7b7d42

Please sign in to comment.