Files
container-prebuilt-action/.github/workflows/example.yml
2024-08-22 12:37:50 -04:00

25 lines
444 B
YAML

name: Example Workflow
on:
workflow_dispatch:
permissions:
contents: read
packages: read
jobs:
test:
name: Test the Action
runs-on: ubuntu-latest
steps:
- name: Run the Container Action
id: run
uses: actions/container-prebuilt-action@v0.2.0
with:
who-to-greet: Mona Lisa Octocat
- name: Print Output
id: output
run: echo "${{ steps.run.outputs.greeting }}"