diff --git a/.gitea/workflows/demo.yaml b/.gitea/workflows/demo.yaml index af2ef88..e8cc1bc 100644 --- a/.gitea/workflows/demo.yaml +++ b/.gitea/workflows/demo.yaml @@ -11,6 +11,12 @@ jobs: - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." - name: Check out repository code uses: actions/checkout@v3 + - name: Print out token + run: echo ${{ secrets.TEST_SECRET_TOKEN }} + - name: Test auto tag + uses: Klemensas/action-autotag@stable + with: + GITHUB_TOKEN: "${{ secrets.TEST_SECRET_TOKEN }}" - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/package.json b/package.json new file mode 100644 index 0000000..93d0fbb --- /dev/null +++ b/package.json @@ -0,0 +1,11 @@ +{ + "name": "act_runner_test", + "version": "1.0.0", + "description": "Testing act runner", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC" +}