Synchronise 8.1 stable branch #212
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow keeps the 8.1 stable branch in sync with the upstream branch. Note: Force is used! (all changes to local 8.0 will be lost) | |
name: Synchronise 8.1 stable branch | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * # At the end of each day | |
jobs: | |
git-sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
- name: repo-sync | |
uses: FrederikSchaff/github-sync@v2 | |
with: | |
source_repo: "marcov64/Lsd" | |
source_branch: "8.1-stable" | |
destination_branch: "8.1-stable" | |
github_token: ${{ secrets.GITHUB_TOKEN }} |