Don't run CI twice on pull requests
This commit is contained in:
parent
08764c27dd
commit
7073f5660a
2 changed files with 12 additions and 2 deletions
7
.github/workflows/benchmark.yml
vendored
7
.github/workflows/benchmark.yml
vendored
|
@ -2,7 +2,12 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
name: Benchmark
|
||||
on: push
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- development
|
||||
- '[0-9]+.[0-9]+.x'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
|
|
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -2,7 +2,12 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
name: CI
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- development
|
||||
- '[0-9]+.[0-9]+.x'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
Loading…
Add table
Reference in a new issue