Merge branch 'v0.18.x' of github.com:foomo/keel into feature/graceful-shutdown

This commit is contained in:
Kevin Franklin Kim 2024-03-25 08:22:26 +01:00
commit 011d917752
No known key found for this signature in database
5 changed files with 31 additions and 18 deletions

View File

@ -1,15 +1,10 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2 version: 2
updates: updates:
- package-ecosystem: "github-actions" - package-ecosystem: github-actions
directory: "/" directory: '/'
schedule: schedule:
interval: "weekly" interval: weekly
- package-ecosystem: "gomod" - package-ecosystem: gomod
directory: "/" directory: '/'
schedule: schedule:
interval: "weekly" interval: weekly

View File

@ -1,9 +1,10 @@
name: Test Branch name: PR check
on: on:
push: push:
branches: [ main ] branches: [ main ]
pull_request: pull_request:
merge_group:
workflow_dispatch: workflow_dispatch:
concurrency: concurrency:
@ -27,9 +28,9 @@ jobs:
- uses: golangci/golangci-lint-action@v4 - uses: golangci/golangci-lint-action@v4
with: with:
version: latest version: latest
args: --timeout=5m
- run: make test - name: Run tests
run: make test
- uses: coverallsapp/github-action@v2 - uses: coverallsapp/github-action@v2
with: with:

View File

@ -14,14 +14,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags - name: Unshallow
run: git fetch --prune --unshallow
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version-file: 'go.mod' go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v5 - uses: goreleaser/goreleaser-action@v5
with: with:

View File

@ -1,4 +1,5 @@
run: run:
timeout: 5m
skip-dirs: skip-dirs:
- tmp - tmp

View File

@ -1,5 +1,22 @@
project_name: keel
release:
github:
owner: foomo
name: keel
prerelease: auto
builds: builds:
- skip: true - skip: true
archives:
- format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
changelog: changelog:
use: github-native use: github-native