From a3e0e645b67541a817da801a9d5842d9907738c6 Mon Sep 17 00:00:00 2001 From: staffadmin Date: Mon, 13 Nov 2023 13:46:35 +0100 Subject: [PATCH] Add test --- .gitea/workflows/demo.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index 1029150..f004543 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -9,6 +9,12 @@ jobs: - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Checkout private tools + uses: actions/checkout@v3 + with: + repository: staffadmin/gitea-runner + token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT + path: test - name: Check out repository code uses: actions/checkout@v3 - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."