Removed pop up #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |