mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
Fixed workflows to not run twice unnecessarily
This commit is contained in:
parent
3b433acc9f
commit
4ce7610fe9
3
.github/workflows/auto-approve.yml
vendored
3
.github/workflows/auto-approve.yml
vendored
@ -1,6 +1,5 @@
|
|||||||
name: Auto approve
|
name: Auto approve
|
||||||
on: pull_request
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
6
.github/workflows/codecov.yml
vendored
6
.github/workflows/codecov.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: Coverage
|
name: Coverage
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Test and Report
|
name: Test and Report
|
||||||
|
6
.github/workflows/docker.yml
vendored
6
.github/workflows/docker.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: Docker
|
name: Docker
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build Image
|
name: Build Image
|
||||||
|
6
.github/workflows/go.yml
vendored
6
.github/workflows/go.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: Go
|
name: Go
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: Build and Test
|
name: Build and Test
|
||||||
|
2
.github/workflows/greetings.yml
vendored
2
.github/workflows/greetings.yml
vendored
@ -1,7 +1,5 @@
|
|||||||
name: Greetings
|
name: Greetings
|
||||||
|
|
||||||
on: [pull_request, issues]
|
on: [pull_request, issues]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
greeting:
|
greeting:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
1
.github/workflows/label.yml
vendored
1
.github/workflows/label.yml
vendored
@ -1,6 +1,5 @@
|
|||||||
name: Labeler
|
name: Labeler
|
||||||
on: [pull_request]
|
on: [pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label:
|
label:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
6
.github/workflows/reviewdog.yml
vendored
6
.github/workflows/reviewdog.yml
vendored
@ -1,5 +1,9 @@
|
|||||||
name: ReviewDog
|
name: ReviewDog
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
pull_request:
|
||||||
jobs:
|
jobs:
|
||||||
golangci-lint:
|
golangci-lint:
|
||||||
name: runner / golangci-lint
|
name: runner / golangci-lint
|
||||||
|
Loading…
x
Reference in New Issue
Block a user