Merge pull request #91 from wneessen/improve_workflow

Update workflows to trigger on specific file changes
This commit is contained in:
Winni Neessen 2024-03-25 19:34:43 +01:00 committed by GitHub
commit cac191470f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 27 additions and 2 deletions

View file

@ -11,7 +11,7 @@ on:
paths: paths:
- '**.go' - '**.go'
- 'go.*' - 'go.*'
- '.github/**' - '.github/workflow/codecov.yml'
- 'codecov.yml' - 'codecov.yml'
pull_request: pull_request:
branches: branches:
@ -19,7 +19,7 @@ on:
paths: paths:
- '**.go' - '**.go'
- 'go.*' - 'go.*'
- '.github/**' - '.github/workflow/codecov.yml'
- 'codecov.yml' - 'codecov.yml'
jobs: jobs:
run: run:

View file

@ -14,10 +14,20 @@ on:
- cron: '24 12 * * *' - cron: '24 12 * * *'
push: push:
branches: [ main ] branches: [ main ]
paths:
- '**.go'
- 'go.*'
- '.github/workflow/docker-publish.yml'
- 'codecov.yml'
# Publish semver tags as releases. # Publish semver tags as releases.
tags: [ 'v*.*.*' ] tags: [ 'v*.*.*' ]
pull_request: pull_request:
branches: [ main ] branches: [ main ]
paths:
- '**.go'
- 'go.*'
- '.github/workflow/docker-publish.yml'
- 'codecov.yml'
permissions: permissions:
contents: read contents: read

View file

@ -9,7 +9,17 @@ on:
- v* - v*
branches: branches:
- main - main
paths:
- '**.go'
- 'go.*'
- '.github/workflow/golangci-lint.yml'
- 'codecov.yml'
pull_request: pull_request:
paths:
- '**.go'
- 'go.*'
- '.github/workflow/golangci-lint.yml'
- 'codecov.yml'
permissions: permissions:
contents: read contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option. # Optional: allow read access to pull request. Use with `only-new-issues` option.

View file

@ -8,6 +8,11 @@ on:
push: push:
branches: branches:
- main # or the name of your main branch - main # or the name of your main branch
paths:
- '**.go'
- 'go.*'
- '.github/workflow/sonarqube.yml'
- 'codecov.yml'
jobs: jobs:
build: build:
name: Build name: Build