mirror of
https://github.com/eclipse/mosquitto.git
synced 2025-05-09 01:01:11 +08:00
Github action for synchronising coverity scan branches
This commit is contained in:
parent
873e580a00
commit
80bb31cf48
18
.github/workflows/covsync.yml
vendored
Normal file
18
.github/workflows/covsync.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user