add initial action
All checks were successful
Test action / Print hello world (push) Successful in 1s
All checks were successful
Test action / Print hello world (push) Successful in 1s
This commit is contained in:
parent
218eb0ea42
commit
a3987254f0
1 changed files with 16 additions and 0 deletions
16
.forgejo/workflows/action.yml
Normal file
16
.forgejo/workflows/action.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Test action
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
hello:
|
||||
name: Print hello world
|
||||
runs-on: default
|
||||
steps:
|
||||
- name: Echo
|
||||
run: |
|
||||
echo "Hello, world!"
|
Reference in a new issue