mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
Update workflows to trigger on specific file changes
The update limits the GolangCI, Codecov, SonarQube, and Docker workflow triggers to only fire when specific related files are modified. By focusing on relevant paths like '**.go', 'go.*' and respective workflow files, we enhance the efficiency of our CI/CD process.
This commit is contained in:
parent
b7b4073483
commit
0e2df1fe07
4 changed files with 27 additions and 2 deletions
4
.github/workflows/codecov.yml
vendored
4
.github/workflows/codecov.yml
vendored
|
@ -11,7 +11,7 @@ on:
|
|||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/**'
|
||||
- '.github/workflow/codecov.yml'
|
||||
- 'codecov.yml'
|
||||
pull_request:
|
||||
branches:
|
||||
|
@ -19,7 +19,7 @@ on:
|
|||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/**'
|
||||
- '.github/workflow/codecov.yml'
|
||||
- 'codecov.yml'
|
||||
jobs:
|
||||
run:
|
||||
|
|
10
.github/workflows/docker-publish.yml
vendored
10
.github/workflows/docker-publish.yml
vendored
|
@ -14,10 +14,20 @@ on:
|
|||
- cron: '24 12 * * *'
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/workflow/docker-publish.yml'
|
||||
- 'codecov.yml'
|
||||
# Publish semver tags as releases.
|
||||
tags: [ 'v*.*.*' ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/workflow/docker-publish.yml'
|
||||
- 'codecov.yml'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
10
.github/workflows/golangci-lint.yml
vendored
10
.github/workflows/golangci-lint.yml
vendored
|
@ -9,7 +9,17 @@ on:
|
|||
- v*
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/workflow/golangci-lint.yml'
|
||||
- 'codecov.yml'
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/workflow/golangci-lint.yml'
|
||||
- 'codecov.yml'
|
||||
permissions:
|
||||
contents: read
|
||||
# Optional: allow read access to pull request. Use with `only-new-issues` option.
|
||||
|
|
5
.github/workflows/sonarqube.yml
vendored
5
.github/workflows/sonarqube.yml
vendored
|
@ -8,6 +8,11 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- main # or the name of your main branch
|
||||
paths:
|
||||
- '**.go'
|
||||
- 'go.*'
|
||||
- '.github/workflow/sonarqube.yml'
|
||||
- 'codecov.yml'
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
|
|
Loading…
Reference in a new issue