A drop-in, single-binary reimplementation of the caronc/apprise-api HTTP API in Go.
0

Configure Feed

Select the types of activity you want to include in your feed.

add test workflow and update renovate config

Kohei Watanabe (Jun 7, 2026, 9:39 PM +0900) 75d37f0d e9505877

+15 -6
+14
.forgejo/workflows/test.yml
··· 1 + # yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json 2 + name: test 3 + on: push 4 + jobs: 5 + main: 6 + runs-on: self-hosted 7 + steps: 8 + - run: apk add nodejs make 9 + - uses: https://github.com/actions/checkout@v6 10 + - uses: https://github.com/actions/setup-go@v6 11 + with: 12 + go-version-file: go.mod 13 + - name: Test 14 + run: make test
+1 -6
renovate.json
··· 1 1 { 2 2 "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 - "extends": [ 4 - "config:best-practices", 5 - ":automergeAll", 6 - ":automergeBranch", 7 - ":skipStatusChecks" 8 - ] 3 + "extends": ["config:best-practices", ":automergeAll", ":automergeBranch"] 9 4 }