File tree Expand file tree Collapse file tree 5 files changed +9
-7
lines changed
Expand file tree Collapse file tree 5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 3030 - name : Fail
3131 if : steps.changed-changelog-files.outputs.any_changed != 'true'
3232 run : |
33- echo <<EOF
33+ cat <<EOF
3434 No changelog entry detected.
3535 If this PR has user facing changes, ensure that a change log entry as been added via changie. See CONTRIBUTING.md for details.
3636 If this PR does not have user facing changes, label the PR with "no-changelog" through GitHub's UI.
37- EOF && exit 1
37+ EOF
38+ exit 1
Original file line number Diff line number Diff line change 2929 - name : install dependencies
3030 env :
3131 SCRIPT_DIR : ${{ github.workspace }}/.github/workflows/scripts
32- run : pip install -r ${SCRIPT_DIR}/requirements.txt
32+ run : pip install -r " ${SCRIPT_DIR}" /requirements.txt
3333 - name : install pandoc
3434 run : sudo apt-get update && sudo apt-get install -y pandoc
3535 - name : Add comment to JIRA Issue
4040 ISSUE_URL : ${{ github.event.issue.html_url }}
4141 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4242 ISSUE_COMMENT : ${{ github.event.comment.body }}
43- run : python ${SCRIPT_DIR}/jira_helper.py UPDATE_COMMENT --verbose -p K8S
43+ run : python " ${SCRIPT_DIR}" /jira_helper.py UPDATE_COMMENT --verbose -p K8S
Original file line number Diff line number Diff line change 3434 - name : install dependencies
3535 env :
3636 SCRIPT_DIR : ${{ github.workspace }}/.github/workflows/scripts
37- run : pip install -r ${SCRIPT_DIR}/requirements.txt
37+ run : pip install -r " ${SCRIPT_DIR}" /requirements.txt
3838 - name : install pandoc
3939 run : sudo apt-get update && sudo apt-get install -y pandoc
4040 - name : Manage JIRA Issue
4949 ISSUE_LABELS : ${{ join(github.event.issue.labels.*.name) }}
5050 ISSUE_STATE : ${{ github.event.issue.state }}
5151 EVENT_NAME : ${{ github.event.action }}
52- run : python ${SCRIPT_DIR}/jira_helper.py ISSUE --verbose -p K8S
52+ run : python " ${SCRIPT_DIR}" /jira_helper.py ISSUE --verbose -p K8S
Original file line number Diff line number Diff line change 5757 var : MOD
5858 cmd : cd {{.ITEM}} && golangci-lint run --timeout 28m {{.PKG}} {{.CLI_ARGS}}
5959 - ct lint --chart-dirs ./charts --check-version-increment=false --all
60+ - actionlint
6061
6162 lint-fix :
6263 desc : " equivalent to task lint -- --fix"
Original file line number Diff line number Diff line change 4444 # If the version of the installed binary is important make sure to
4545 # update TestToolVersions.
4646 packages = [
47+ pkgs . actionlint # Github Workflow definition linter https://github.com/rhysd/actionlint
4748 pkgs . applyconfiguration-gen
4849 pkgs . backport
4950 pkgs . buildkite-agent
7576 pkgs . openssl
7677 pkgs . setup-envtest # Kubernetes provided test utilities
7778 pkgs . yq-go
78- # pkgs.actionlint # Github Workflow definition linter https://github.com/rhysd/actionlint
7979 # pkgs.gotools
8080 ] ++ lib . optionals pkgs . stdenv . isLinux [
8181 pkgs . sysctl # Used to adjust ulimits on linux systems (Namely, CI).
You can’t perform that action at this time.
0 commit comments