Skip to content

GPodder Release Check #578

GPodder Release Check

GPodder Release Check #578

name: GPodder Release Check
on:
schedule:
- cron: '14 14 * * *'
workflow_dispatch:
jobs:
yacr_update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: depup
uses: reviewdog/action-depup@v1
id: depup
with:
file: light/Dockerfile
version_name: GPODDER_TAG
repo: gpodder/gpodder
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "chore: update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}"
commit-message: "chore: update ${{ steps.depup.outputs.repo }} to ${{ steps.depup.outputs.latest }}"
body: |
Update ${{ steps.depup.outputs.repo }} to [${{ steps.depup.outputs.latest }}](https://github.com/${{ steps.depup.outputs.repo }}/releases/tag/v${{ steps.depup.outputs.latest }})
This PR is auto generated by [depup workflow](https://github.com/${{ github.repository }}/actions?query=workflow%3A${{ github.workflow }}).
branch: depup/${{ steps.depup.outputs.latest }}