Skip to content

Check Update

Check Update #2740

Workflow file for this run

name: 'Check Update'
on:
schedule:
- cron: '0 * * * *' # Every hours
workflow_dispatch: # Allow running the workflow manually
permissions:
issues: write
jobs:
check-updates:
runs-on: ubuntu-latest
steps:
- name: 'Check Mods Updates'
uses: Gunivers/modrinth-modpack-update-checker@v1.1.0
id: check
with:
modrinth-modpack-slug: 'map-making-modpack'
- name: 'Print Modrinth Modpack updates'
uses: Gunivers/modrinth-modpack-update-printer@v1.0.0
# if: ${{ steps.check.outputs.is-up-to-date == 'false' }}
with:
current-mc-version: ${{ steps.check.outputs.current-version }}
is-up-to-date: ${{ steps.check.outputs.is-up-to-date }}
tested-mc-version: ${{ steps.check.outputs.searched-version }}
supported-mods: ${{ steps.check.outputs.supported }}
unsupported-mods: ${{ steps.check.outputs.unsupported }}
can-upgrade: ${{ steps.check.outputs.can-upgrade }}
person-to-ping: 'theogiraudet'
env:
GITHUB_TOKEN: ${{ github.token }}