Rename 9-branch-based-workflow-execution–develop.yml to 10-branch-bas… #1
This file contains 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: 9 - Branch Based Workflow Execution - Develop | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
develop-job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Echo Develop Branch | |
run: echo "This workflow runs on the develop branch." |