From 61b7d451d59a23ab48120de5ba4e1688355c2f69 Mon Sep 17 00:00:00 2001 From: Codinget Date: Fri, 22 May 2026 21:42:52 +0000 Subject: [PATCH] ci: see if we can checkout --- .gitea/workflows/test-checkout.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/test-checkout.yaml diff --git a/.gitea/workflows/test-checkout.yaml b/.gitea/workflows/test-checkout.yaml new file mode 100644 index 0000000..b962868 --- /dev/null +++ b/.gitea/workflows/test-checkout.yaml @@ -0,0 +1,25 @@ +name: Test checkout +on: workflow_dispatch + +jobs: + self: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout + - run: ls -lah + + other-in-user: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout + with: + repository: codinget/totallynotmalware + - run: ls -lah + + other-in-other-org: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout + with: + repository: privileged/action-tests + - run: ls -lah