mirror of
https://github.com/bendtherules/hello-github-actions.git
synced 2026-08-18 13:53:58 +00:00
13 lines
249 B
YAML
13 lines
249 B
YAML
name: A workflow for my Hello World file
|
|
on: push
|
|
|
|
jobs:
|
|
buildABC:
|
|
name: Hello world action
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: ./action-a
|
|
with:
|
|
MY_NAME: "Abhas bendtherules"
|