Skip to content

Removed pop up

Removed pop up #6

name: Netlify Deploy Status
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
deploy-info:
name: Deployment Information
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deployment notification
run: |
echo "πŸš€ Netlify will automatically deploy this commit"
echo "πŸ“¦ Branch: ${{ github.ref_name }}"
echo "πŸ’‘ Commit: ${{ github.sha }}"
if [ "${{ github.event_name }}" == "pull_request" ]; then
echo "πŸ” This is a preview deployment for PR #${{ github.event.pull_request.number }}"
echo "Preview URL will be available in the Netlify bot comment below"
else
echo "🌐 Production deployment to: https://betirement.com"
fi