Update test #5
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: Hello World PR Check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
greeting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Say hello | |
run: echo "Hello World! This is a check that runs on pull requests." |