You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mosquitto/.github/workflows/covsync.yml

22 lines
509 B
YAML

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 coverity-fixes
git reset --hard origin/fixes
git push origin coverity-fixes
git checkout coverity-develop
git reset --hard origin/develop
git push origin coverity-develop