feat: ability to specify externally created service account and just to override sa name without overriding fullname from tpl #70
Workflow file for this run
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: reviewdog | |
on: [pull_request] | |
jobs: | |
golangci-lint: | |
name: runner / golangci-lint | |
# UPDATE_HERE | |
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
runs-on: ubuntu-22.04 | |
steps: | |
# UPDATE_HERE | |
# https://github.com/actions/checkout/releases | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
# UPDATE_HERE | |
# https://github.com/reviewdog/action-golangci-lint/releases | |
- name: golangci-lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
golangci_lint_flags: "--timeout=4m" | |
# UPDATE_HERE | |
# https://github.com/reviewdog/action-actionlint/releases | |
- name: action-lint | |
uses: reviewdog/action-actionlint@v1 | |
with: | |
actionlint_flags: "actionlint -shellcheck=" | |
# UPDATE_HERE | |
# https://github.com/reviewdog/action-hadolint/releases | |
- name: docker hadolint | |
uses: reviewdog/action-hadolint@v1 | |
with: | |
hadolint_flags: --trusted-registry docker.io |