Skip to content

Commit

Permalink
chore: fmt workflows, rename files (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xDones authored Aug 6, 2024
1 parent 425d3e2 commit 814f2a2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-codeowners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- name: Check CODEOWNERS for modifications
run: |
git diff --exit-code || echo "::warning::There is at least one codeowner mismatch."
git diff --exit-code || echo "::warning::There is at least one codeowner mismatch."
2 changes: 1 addition & 1 deletion .github/workflows/check-commits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ jobs:
uses: actions/checkout@v4

- name: Check Conventional Commits
uses: webiny/[email protected]
uses: webiny/[email protected]
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Helm Docs Check

on:
pull_request
on: pull_request

jobs:
helm-docs-validation:
Expand All @@ -15,7 +14,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Run helm-docs
run: docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:latest
run: docker run --rm --volume "$(pwd):/helm-docs" -u "$(id -u)" jnorwood/helm-docs:latest

- name: Check for unstaged changes
run: |
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"
check-latest: true

- name: Set up chart-testing
Expand All @@ -27,10 +27,10 @@ jobs:
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
if [[ -n "$changed" ]]; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
fi
- name: Helm Dependencies
if: steps.list-changed.outputs.changed == 'true'
Expand Down Expand Up @@ -66,4 +66,4 @@ jobs:
# # skipped for some reason.
# exit 0
# fi
# ct install --config ct.yaml --excluded-charts execution-beacon,ethereum-node
# ct install --config ct.yaml --excluded-charts execution-beacon,ethereum-node
2 changes: 1 addition & 1 deletion .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: actions/checkout@v2

- name: Lint Codebase
uses: super-linter/[email protected]
uses: super-linter/[email protected]
env:
FILTER_REGEX_EXCLUDE: .*(README\.md|Chart\.yaml|NOTES\.txt).*
VALIDATE_ALL_CODEBASE: false # Only new or modified files will be parsed for validation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
scripts/validate-pr.sh
env:
PR_TITLE: ${{ github.event.pull_request.title }}
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }}
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }}

0 comments on commit 814f2a2

Please sign in to comment.