1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-20 14:37:43 +01:00

Add providers merge workflow

This commit is contained in:
Cooper Ransom 2024-03-31 10:24:48 -04:00
parent ad9504a6a8
commit 9268652f2f

23
.github/workflows/syncProviders.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: Merge Providers
on:
schedule:
- cron: "0 * * * *" # Run the job every hour
push:
branches:
- "*"
paths:
- .github/workflows/sync.yml
jobs:
merge_providers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Merge upstream changes (providers)
run: |
git fetch movie-web/providers
git merge movie-web/providers --no-edit
git push origin HEAD
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}