first commit

This commit is contained in:
ange 2024-04-28 23:16:07 +02:00
commit e34fae7ab2
Signed by: ange
GPG key ID: 9E0C4157BB7BEB1D
3 changed files with 26 additions and 0 deletions

17
action.yaml Normal file
View file

@ -0,0 +1,17 @@
name: checkout
inputs:
token:
description: A token to authenticate on behalf of the GitHub App installed on your repository.
default: ${{ gitea.token }}
runs:
using: composite
steps:
- name: Checkout
run: ${{ gitea.action_path }}/checkout.sh
env:
ACTION_REPOSITORY: ${{ gitea.repository }}
ACTION_REPOSITORY_OWNER: ${{ gitea.repository_owner }}
ACTION_SERVER_URL: ${{ gitea.server_url }}
ACTION_SHA: ${{ gitea.sha }}
ACTION_TOKEN: ${{ inputs.token }}