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:
parent
4d939ef6ce
commit
6435aaa70b
11
.github/workflows/fuzz.yml
vendored
11
.github/workflows/fuzz.yml
vendored
@ -1,6 +1,15 @@
|
||||
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:
|
||||
fuzzing:
|
||||
|
11
.github/workflows/macos.yml
vendored
11
.github/workflows/macos.yml
vendored
@ -1,6 +1,15 @@
|
||||
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:
|
||||
autotools:
|
||||
|
Loading…
Reference in New Issue
Block a user