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 Action | |
# Triggers the workflow on push to the 'main' branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
say-hello: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Print Hello World | |
run: echo "Hello, World!" |