fix(workflows): use ** instead of **/* in paths (#3267)

* Update test.yml

* Update test.yml

* Update test-required.yml

* Update lint-required.yml

* Update lint.yml
This commit is contained in:
nitrocode
2023-03-26 21:11:59 -05:00
committed by GitHub
parent 3212fe9cbd
commit 617714034f
4 changed files with 11 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ on:
paths:
- 'runatlantis.io/**'
- '.github/**'
- '**/*.md'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

View File

@@ -12,7 +12,7 @@ on:
paths-ignore:
- 'runatlantis.io/**'
- '.github/**'
- '**/*.md'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

View File

@@ -8,7 +8,8 @@ on:
branches:
- "main"
paths-ignore:
- '**/*.go'
- '**.go'
- 'go.*'
- '.github/workflows/test.yml'
pull_request:
types:
@@ -19,7 +20,8 @@ on:
branches:
- "main"
paths-ignore:
- '**/*.go'
- '**.go'
- 'go.*'
- '.github/workflows/test.yml'
concurrency:
@@ -38,4 +40,4 @@ jobs:
if: github.event.pull_request.draft == false
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'
- run: 'echo "No build required"'

View File

@@ -5,7 +5,8 @@ on:
branches:
- "main"
paths:
- '**/*.go'
- '**.go'
- 'go.*'
- '.github/workflows/test.yml'
pull_request:
types:
@@ -16,7 +17,8 @@ on:
branches:
- "main"
paths:
- '**/*.go'
- '**.go'
- 'go.*'
- '.github/workflows/test.yml'
concurrency: