17 lines
350 B
YAML
17 lines
350 B
YAML
name: OnPush
|
|
run-name: ${{ gitea.actor }} has pushed to woodburn repo
|
|
on: [push]
|
|
|
|
jobs:
|
|
CheckFiles:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Commiter
|
|
run: |
|
|
echo "Commited by: ${{ gitea.actor }}!"
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: List HTML files
|
|
run: |
|
|
ls *.html
|