2023-07-17 16:40:30 +10:00
|
|
|
name: OnPush
|
|
|
|
run-name: ${{ gitea.actor }} has pushed to woodburn repo
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
2023-07-17 16:44:22 +10:00
|
|
|
CheckFiles:
|
2023-07-17 16:40:30 +10:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Commiter
|
|
|
|
run: |
|
|
|
|
echo "Commited by: ${{ gitea.actor }}!"
|
2023-07-17 16:44:22 +10:00
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2023-07-17 16:40:30 +10:00
|
|
|
- name: List HTML files
|
|
|
|
run: |
|
2023-07-17 16:44:22 +10:00
|
|
|
ls *.html
|