From 830614679bc404ab5175a72a2d477ad53a936ee6 Mon Sep 17 00:00:00 2001 From: datarian <36982755+datarian@users.noreply.github.com> Date: Tue, 11 Nov 2025 06:55:49 +0100 Subject: [PATCH] Revert "fix: correct YAML syntax for multi-line git commit messages" --- .github/workflows/delete-web-resume.yml | 7 ++----- .github/workflows/deploy-web-resumes.yml | 9 +++------ 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/delete-web-resume.yml b/.github/workflows/delete-web-resume.yml index 9df2bbe..2ca6e07 100644 --- a/.github/workflows/delete-web-resume.yml +++ b/.github/workflows/delete-web-resume.yml @@ -91,14 +91,11 @@ jobs: git config user.name "GitHub Actions" git config user.email "actions@github.com" git add . - git commit -m "$(cat <<'EOF' -chore: delete web resume $id [skip ci] + git commit -m "chore: delete web resume $id [skip ci] Manually deleted via workflow from datarian/CV. -🤖 Triggered by ${{ github.actor }} -EOF -)" || echo "No changes to commit" +🤖 Triggered by ${{ github.actor }}" || echo "No changes to commit" git push https://x-access-token:${CV_PAGES_TOKEN}@github.com/datarian/CV-pages.git gh-pages - name: Report deletion diff --git a/.github/workflows/deploy-web-resumes.yml b/.github/workflows/deploy-web-resumes.yml index e0b728e..f71f4dd 100644 --- a/.github/workflows/deploy-web-resumes.yml +++ b/.github/workflows/deploy-web-resumes.yml @@ -130,14 +130,11 @@ jobs: git config user.name "GitHub Actions" git config user.email "actions@github.com" git add . - git commit -m "$(cat <<'EOF' -Deploy web resumes [skip ci] + git commit -m "Deploy web resumes [skip ci] -Automated deployment from datarian/CV@${{ github.sha }} + Automated deployment from datarian/CV@${{ github.sha }} -🤖 Generated with GitHub Actions -EOF -)" || echo "No changes to commit" + 🤖 Generated with GitHub Actions" || echo "No changes to commit" git push https://x-access-token:${CV_PAGES_TOKEN}@github.com/datarian/CV-pages.git gh-pages - name: Report deployment URLs