Skip to content

Commit c0b92e9

Browse files
committed
chore: scaffold gallery repo with placeholder workflows
0 parents  commit c0b92e9

3 files changed

Lines changed: 41 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Build Gallery Index
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
7+
paths:
8+
- 'gallery/**'
9+
10+
jobs:
11+
build-index:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Placeholder
16+
run: echo "Index builder workflow scaffolded"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Gallery Validate
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'gallery/**'
7+
- '.github/workflows/gallery-validate.yml'
8+
push:
9+
branches: [ main ]
10+
paths:
11+
- 'gallery/**'
12+
- '.github/workflows/gallery-validate.yml'
13+
14+
jobs:
15+
validate-gallery:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Placeholder
20+
run: echo "Gallery validation workflow scaffolded"

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Tree Gallery
2+
3+
Public gallery repository for Tree collection scripts.
4+
5+
Status: scaffold initialized.

0 commit comments

Comments
 (0)