Skip to content

Commit

Permalink
first action
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-grozav committed Oct 5, 2024
1 parent aaa242c commit 3a62342
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Hello World Action

# Triggers the workflow on push to the 'main' branch
on:
push:
branches:
- main

jobs:
say-hello:
runs-on: github-runner-9XulJZPvgQIOe
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Print Hello World
run: echo "Hello, World!"

0 comments on commit 3a62342

Please sign in to comment.