mirror of
https://codeberg.org/dwl/dwl.git
synced 2026-04-06 07:15:31 -04:00
added workflow to trigger script
This commit is contained in:
parent
e20ed8d3f4
commit
4561cbf379
2 changed files with 32 additions and 3 deletions
29
.github/workflows/test-all-patches-action.yml
vendored
Normal file
29
.github/workflows/test-all-patches-action.yml
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
name: Test all Patches
|
||||
run-name: Test all Patches for ${{ github.event.repository.updated_at }}
|
||||
on:
|
||||
push:
|
||||
gollum: # on wiki edit
|
||||
jobs:
|
||||
Start Action:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- run: echo "This was automatically triggered by a ${{ github.event_name }} event."
|
||||
|
||||
- name: Check out main
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: src-dir
|
||||
|
||||
- name: Check out Wiki
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: ${{ github.repository }}.wiki
|
||||
path: wiki-dir
|
||||
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ github.workspace }}
|
||||
ls
|
||||
|
||||
- name: Run Tests
|
||||
run: ./testPatches.sh ./src-dir ./wiki-dir
|
||||
Loading…
Add table
Add a link
Reference in a new issue