From e6cf8aeeaaca21916a99b36eebbdf5e30b8244a1 Mon Sep 17 00:00:00 2001 From: Mikkeli Matlock Date: Tue, 9 Jun 2026 16:39:55 +0900 Subject: [PATCH] Add Gitea Actions stub workflow for auto-wiki pipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calls novoyuuparosk-auto-wiki/.gitea/workflows/publish-songs.yml on push to master (excluding wip/, README.md, .gitignore, .claude/). References automation/songs branch during development — switch to @main when that branch merges. Co-Authored-By: Claude Sonnet 4.6 --- .gitea/workflows/publish.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/publish.yml diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml new file mode 100644 index 0000000..f71d36d --- /dev/null +++ b/.gitea/workflows/publish.yml @@ -0,0 +1,16 @@ +on: + push: + branches: [master] + paths-ignore: + - "wip/**" + - "README.md" + - ".gitignore" + - ".claude/**" + +jobs: + publish: + uses: mikkeli/novoyuuparosk-auto-wiki/.gitea/workflows/publish-songs.yml@automation/songs + with: + SOURCE_REF: ${{ github.sha }} + SOURCE_BASE_REF: ${{ github.event.before }} + secrets: inherit