25 lines
444 B
YAML
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 }}"
|