Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/delete-web-resume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +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]" \
-m "" \
-m "Manually deleted via workflow from datarian/CV." \
-m "" \
-m "🤖 Triggered by ${{ github.actor }}" \
|| echo "No changes to commit"
git commit -m "$(cat <<'EOF'
chore: delete web resume $id [skip ci]

Manually deleted via workflow from datarian/CV.

🤖 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
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/deploy-web-resumes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +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]" \
-m "" \
-m "Automated deployment from datarian/CV@${{ github.sha }}" \
-m "" \
-m "🤖 Generated with GitHub Actions" \
|| echo "No changes to commit"
git commit -m "$(cat <<'EOF'
Deploy web resumes [skip ci]

Automated deployment from datarian/CV@${{ github.sha }}

🤖 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
Expand Down