mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-21 12:17:17 +03:00
ci: don't run on renovate branches
They are run on PR. Save some ci time (~6min)
This commit is contained in:
parent
ab8346ba3a
commit
65c9651b1b
3 changed files with 6 additions and 2 deletions
|
@ -7,6 +7,8 @@ on:
|
|||
- Dockerfile
|
||||
- .forgejo/workflows/build-release.yml
|
||||
- .forgejo/workflows/build-release-integration.yml
|
||||
branches-ignore:
|
||||
- renovate/** # they are build via PR
|
||||
pull_request:
|
||||
paths:
|
||||
- go.mod
|
||||
|
|
|
@ -12,7 +12,8 @@ name: Build release
|
|||
|
||||
on:
|
||||
push:
|
||||
tags: 'v*'
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
release:
|
||||
|
|
|
@ -17,7 +17,8 @@ name: publish
|
|||
|
||||
on:
|
||||
push:
|
||||
tags: 'v*'
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
|
|
Loading…
Reference in a new issue