Github action for synchronising coverity scan branches

pull/1781/head
Roger A. Light 5 years ago
parent 873e580a00
commit 80bb31cf48

@ -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
Loading…
Cancel
Save