Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
swinton committed Aug 14, 2023
1 parent f8e3a10 commit 0a39bbb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Hello World

on:
workflow_call:

jobs:
hello-world:
name: Hello World
runs-on: ubuntu-latest
steps:
- name: Context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- name: Checkout
uses: actions/checkout@v2
- name: Hello World
run: |
echo "Hello World"

0 comments on commit 0a39bbb

Please sign in to comment.