13 lines
184 B
YAML
13 lines
184 B
YAML
|
name: FakeAction
|
||
|
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Run a one-line script
|
||
|
run: echo ping
|