Temporary disabled auto updater until it will be fixed

This commit is contained in:
XargonWan 2025-01-04 21:52:42 +09:00
parent 1794697d95
commit 6f584fc9a3
2 changed files with 6 additions and 2 deletions

View file

@ -3,8 +3,8 @@ name: "Sync with Upstream and Create PR"
on: on:
workflow_call: workflow_call:
workflow_dispatch: workflow_dispatch:
schedule: # schedule:
- cron: "30 0 * * *" # Run every day at 00:30 UTC (9:30 JST) # - cron: "30 0 * * *" # Run every day at 00:30 UTC (9:30 JST)
jobs: jobs:
upstream-sync: upstream-sync:

4
update_from_upstream.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
git fetch https://github.com/flathub/org.zdoom.GZDoom master # Fetch the latest changes from the remote master branch
git merge FETCH_HEAD # Merge the fetched changes into your current branch