From 5ae646b79aa0760a34a2258b8a47ab6286283bae Mon Sep 17 00:00:00 2001 From: Adam Burgess Date: Tue, 4 Jun 2024 21:43:09 +1000 Subject: [PATCH] initial --- action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..fc62254 --- /dev/null +++ b/action.yml @@ -0,0 +1,15 @@ +name: 'Checkout' +description: 'Checkout a Git repository at a particular version' +inputs: + repository: + description: 'Repository name with owner. For example, actions/checkout' + default: ${{ github.repository }} + ref: + description: > + The branch, tag or SHA to checkout. When checking out the repository that + triggered a workflow, this defaults to the reference or SHA for that + event. Otherwise, uses the default branch. +runs: + using: 'docker' + image: 'docker://aburgess:git' + entrypoint: echo hello