design examples #2
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: Dummy Status Check | |
on: | |
pull_request: | |
push: | |
branches: | |
- main # Ensures it runs on pushes to main | |
jobs: | |
dummy-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dummy Status Check | |
run: echo "Passing status check" |