Add functionality to helm chart to allow image digest for controllerImage #719
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: markdown | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/markdown.yml | |
- '**/*.md' | |
jobs: | |
markdownlint: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 | |
- uses: DavidAnson/markdownlint-cli2-action@8f3516061301755c97ff833a8e933f09282cc5b5 | |
with: | |
globs: | | |
**/*.md | |
!**/node_modules/** | |
!target/** |