Skip to content

Commit

Permalink
ci: fix minor issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fredleger committed Dec 30, 2024
1 parent f965c78 commit a853a18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/__shared-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})
changed="$(ct list-changed --target-branch ${{ github.event.repository.default_branch }})"
echo "changed=${changed}"
if [[ -n "$changed" ]]; then
echo "INFO: The chart has changes compared to the default branch"
echo "changed=true" >> "$GITHUB_OUTPUT"
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: Pull request - Continuous Integration

on:
pull_request:
branches:
- main
types: [opened, reopened, synchronize]

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down

0 comments on commit a853a18

Please sign in to comment.