Initial commit

This commit is contained in:
Nick Alteen
2023-12-08 10:33:30 -05:00
commit 46755db8f3
17 changed files with 616 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
name: Example Workflow
on:
push:
branches:
- main
permissions:
contents: read
jobs:
test:
name: Test the Action
runs-on: ubuntu-latest
steps:
- name: Run the Container Action
id: run
uses: actions/container-prebuilt-action@latest
with:
who-to-greet: Mona Lisa Octocat
- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.greeting }}"