Synchronise Coverity Scan branches on a weekly basis #210
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
name: "Synchronise Coverity Scan branches on a weekly basis" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "7 3 * * 0" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: | | |
git checkout -b coverity-develop origin/develop | |
git pull origin coverity-develop | |
git push origin coverity-develop |