Created
May 29, 2025 01:56
-
-
Save eduardogpg/cf6862d00a10c450dc5bad74e3dcbef3 to your computer and use it in GitHub Desktop.
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: Echo Messages on Push to Main | |
on: | |
push: | |
branches: [ "main" ] | |
jobs: | |
echo-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Echo Step 1 | |
run: echo "π New commit detected on the main branch!" | |
- name: Echo Step 2 | |
run: echo "π Starting the workflow..." | |
- name: Echo Step 3 | |
run: echo "π Performing some checks..." | |
- name: Echo Step 4 | |
run: echo "β Workflow completed successfully!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment