Skip to content

Commit

Permalink
Merge pull request #594 from rstudio/fix-linting-post-to-pr
Browse files Browse the repository at this point in the history
I forgot to add the result as a github actions output.
  • Loading branch information
jforest authored Oct 23, 2024
2 parents 56d7f36 + 1949dc0 commit 6984a9e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/chart-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ jobs:
- name: Run chart-testing (lint changed)
id: ct-lint
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch main --chart-dirs charts --chart-dirs other-charts
run: |
{
echo 'result<<EOF'
ct lint --target-branch main --chart-dirs charts --chart-dirs other-charts
echo 'EOF'
} >> $GITHUB_OUTPUT
continue-on-error: true

- name: Run chart-testing (lint all)
Expand Down

0 comments on commit 6984a9e

Please sign in to comment.