diff --git a/.github/workflows/delete-web-resume.yml b/.github/workflows/delete-web-resume.yml index 2ca6e07..9df2bbe 100644 --- a/.github/workflows/delete-web-resume.yml +++ b/.github/workflows/delete-web-resume.yml @@ -91,11 +91,14 @@ jobs: git config user.name "GitHub Actions" git config user.email "actions@github.com" git add . - git commit -m "chore: delete web resume $id [skip ci] + git commit -m "$(cat <<'EOF' +chore: delete web resume $id [skip ci] Manually deleted via workflow from datarian/CV. -🤖 Triggered by ${{ github.actor }}" || echo "No changes to commit" +🤖 Triggered by ${{ github.actor }} +EOF +)" || 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 f71f4dd..e0b728e 100644 --- a/.github/workflows/deploy-web-resumes.yml +++ b/.github/workflows/deploy-web-resumes.yml @@ -130,11 +130,14 @@ jobs: git config user.name "GitHub Actions" git config user.email "actions@github.com" git add . - git commit -m "Deploy web resumes [skip ci] + git commit -m "$(cat <<'EOF' +Deploy web resumes [skip ci] - Automated deployment from datarian/CV@${{ github.sha }} +Automated deployment from datarian/CV@${{ github.sha }} - 🤖 Generated with GitHub Actions" || echo "No changes to commit" +🤖 Generated with GitHub Actions +EOF +)" || 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