Skip to content

Commit

Permalink
Merge pull request #349 from akash4sh/main
Browse files Browse the repository at this point in the history
Fix: github action failure
  • Loading branch information
jebjohns authored Apr 9, 2024
2 parents b0af2bb + 4e90f0e commit 052ac6c
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Add 'Documentation' label to any changes within 'docs' folder or any subfolders
Documentation:
- changed-files:
- any-glob-to-any-file:
- 'docs/**'

# Add 'Documentation' label to any file changes within 'docs' folder
Documentation_docs:
- changed-files:
- any-glob-to-any-file:
- 'docs/*'

# Add 'Documentation' label to any change to .md files within the entire repository
Documentation_md:
- changed-files:
- any-glob-to-any-file:
- '**/*.md'

# Add 'feature' label to any PR where the head branch name starts with `feature` or has a `feature` section in the name
feature:
- head-branch: ['^feature', 'feature']

# Add 'release' label to any PR that is opened against the `main` branch
release:
- base-branch: 'main'
3 changes: 3 additions & 0 deletions .github/workflows/agent-container-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Container Agent Docker Image CI

on:
pull_request:
paths-ignore:
- '**.md'
- 'charts/**'
branches:
- 'main'

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/agent-git-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Git Agent Docker Image CI

on:
pull_request:
paths-ignore:
- '**.md'
- 'charts/**'
branches:
- 'main'

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/agent-kubviz-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Agent Docker Image CI

on:
pull_request:
paths-ignore:
- '**.md'
- 'charts/**'
branches:
- 'main'

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/client-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Client Docker Image CI

on:
pull_request:
paths-ignore:
- '**.md'
- 'charts/**'
branches:
- 'main'

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/migration-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Migration Docker Image CI

on:
pull_request:
paths-ignore:
- '**.md'
- 'charts/**'
branches:
- 'main'

Expand Down

0 comments on commit 052ac6c

Please sign in to comment.