2021-04-12 15:12:59 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "*/55 * * * *"
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
repo-sync:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-05-23 16:06:06 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-12 15:12:59 +00:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
|
|
|
- name: repo-sync
|
|
|
|
uses: repo-sync/github-sync@v2
|
|
|
|
with:
|
|
|
|
source_repo: "https://git.thalheim.io/Mic92/retiolum.git"
|
|
|
|
source_branch: "master"
|
|
|
|
destination_branch: "master"
|
|
|
|
github_token: ${{ secrets.PAT }}
|