1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-05 00:55:04 -05:00

github actions: run when pushed to master or */ci + PRs

Avoid double-builds when using "local" branches for PRs. For both macos
and fuzz jobs.

Closes #5201
This commit is contained in:
Daniel Stenberg 2020-04-08 11:54:31 +02:00
parent 4d939ef6ce
commit 6435aaa70b
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 20 additions and 2 deletions

View File

@ -1,6 +1,15 @@
name: CI name: CI
on: [push, pull_request] on:
# Trigger the workflow on push or pull requests, but only for the
# master branch
push:
branches:
- master
- '*/ci'
pull_request:
branches:
- master
jobs: jobs:
fuzzing: fuzzing:

View File

@ -1,6 +1,15 @@
name: CI name: CI
on: [push, pull_request] on:
# Trigger the workflow on push or pull requests, but only for the
# master branch
push:
branches:
- master
- '*/ci'
pull_request:
branches:
- master
jobs: jobs:
autotools: autotools: