Github action for synchronising coverity scan branches

This commit is contained in:
Roger A. Light 2020-07-15 11:10:10 +01:00
parent 873e580a00
commit 80bb31cf48

18
.github/workflows/covsync.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: "Synchronise Coverity Scan branches on a weekly basis"
on:
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-fixes origin/fixes
git push origin coverity-fixes
git checkout -b coverity-develop origin/develop
git push origin coverity-develop