Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
- name: Fail
if: steps.changed-changelog-files.outputs.any_changed != 'true'
run: |
echo <<EOF
cat <<EOF
No changelog entry detected.
If this PR has user facing changes, ensure that a change log entry as been added via changie. See CONTRIBUTING.md for details.
If this PR does not have user facing changes, label the PR with "no-changelog" through GitHub's UI.
EOF && exit 1
EOF
exit 1
4 changes: 2 additions & 2 deletions .github/workflows/comment_added.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: install dependencies
env:
SCRIPT_DIR: ${{ github.workspace }}/.github/workflows/scripts
run: pip install -r ${SCRIPT_DIR}/requirements.txt
run: pip install -r "${SCRIPT_DIR}"/requirements.txt
- name: install pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Add comment to JIRA Issue
Expand All @@ -40,4 +40,4 @@ jobs:
ISSUE_URL: ${{ github.event.issue.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ISSUE_COMMENT: ${{ github.event.comment.body }}
run: python ${SCRIPT_DIR}/jira_helper.py UPDATE_COMMENT --verbose -p K8S
run: python "${SCRIPT_DIR}"/jira_helper.py UPDATE_COMMENT --verbose -p K8S
4 changes: 2 additions & 2 deletions .github/workflows/jira_issue_manage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: install dependencies
env:
SCRIPT_DIR: ${{ github.workspace }}/.github/workflows/scripts
run: pip install -r ${SCRIPT_DIR}/requirements.txt
run: pip install -r "${SCRIPT_DIR}"/requirements.txt
- name: install pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Manage JIRA Issue
Expand All @@ -49,4 +49,4 @@ jobs:
ISSUE_LABELS: ${{ join(github.event.issue.labels.*.name) }}
ISSUE_STATE: ${{ github.event.issue.state }}
EVENT_NAME: ${{ github.event.action }}
run: python ${SCRIPT_DIR}/jira_helper.py ISSUE --verbose -p K8S
run: python "${SCRIPT_DIR}"/jira_helper.py ISSUE --verbose -p K8S
1 change: 1 addition & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ tasks:
var: MOD
cmd: cd {{.ITEM}} && golangci-lint run --timeout 28m {{.PKG}} {{.CLI_ARGS}}
- ct lint --chart-dirs ./charts --check-version-increment=false --all
- actionlint

lint-fix:
desc: "equivalent to task lint -- --fix"
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
# If the version of the installed binary is important make sure to
# update TestToolVersions.
packages = [
pkgs.actionlint # Github Workflow definition linter https://github.com/rhysd/actionlint
pkgs.applyconfiguration-gen
pkgs.backport
pkgs.buildkite-agent
Expand Down Expand Up @@ -75,7 +76,6 @@
pkgs.openssl
pkgs.setup-envtest # Kubernetes provided test utilities
pkgs.yq-go
# pkgs.actionlint # Github Workflow definition linter https://github.com/rhysd/actionlint
# pkgs.gotools
] ++ lib.optionals pkgs.stdenv.isLinux [
pkgs.sysctl # Used to adjust ulimits on linux systems (Namely, CI).
Expand Down