Skip to content

Commit

Permalink
try with verified commits
Browse files Browse the repository at this point in the history
  • Loading branch information
ggari-robotnik committed Jul 26, 2024
1 parent 1371c04 commit f238723
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/helm-doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,19 @@ jobs:
- run: |
git add .
if ! git diff --cached --quiet; then
echo "FILES_TO_COMMIT=$(git ls-files --deleted --modified --added --others
)" >> "$GITHUB_ENV"
echo "GIT_BRANCH=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> "$GITHUB_ENV"
echo "FILES_TO_COMMIT=$(git diff --name-only --cached)" >> "$GITHUB_ENV"
# git commit -m "Automated chart README.md update"
# git push
# else
# echo "No changes to commit."
fi
- name: Commit file
uses: chromeq/[email protected]
if: ${{ env.FILES_TO_COMMIT != "" }}
if: ${{ env.FILES_TO_COMMIT != '' }}
with:
files: ${{ env.FILES_TO_COMMIT }}
commit-message: Automated chart README.md update
ref: ${{ env.GIT_BRANCH }}
ref: ${{ github.ref }}
# # Commit all changed files back to the repository
# - uses: stefanzweifel/git-auto-commit-action@v5
# with:
Expand Down

0 comments on commit f238723

Please sign in to comment.