From 7a3cc0c6f5800fd167b962bdb1c6351e687bdf31 Mon Sep 17 00:00:00 2001 From: John Ogle Date: Tue, 13 Jan 2026 15:58:38 -0800 Subject: [PATCH] docs: Use full Gitea URL in usage examples Short-form action references default to GitHub. Full URL required for Gitea-to-Gitea action references. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0c4c4d9..13b46fc 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: johno/gitea-actions/nix-setup@main + - uses: https://git.johnogle.info/johno/gitea-actions/nix-setup@main - run: nix flake check ``` +> **Note:** Full URL required for Gitea Actions to reference actions from the same instance (short-form defaults to GitHub). + **With custom cache prefix:** ```yaml -- uses: johno/gitea-actions/nix-setup@main +- uses: https://git.johnogle.info/johno/gitea-actions/nix-setup@main with: cache-name: 'my-project-' ```