mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08: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…
x
Reference in New Issue
Block a user