mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-09-25 11:15:54 +08:00
Github action for synchronising coverity scan branches
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user