From 780535dd6945ad3544389d480f7641c2be08d8bd Mon Sep 17 00:00:00 2001 From: Alexey Alekhin Date: Thu, 4 Sep 2025 02:33:19 +0200 Subject: [PATCH 1/3] feat: add origin repo input --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 28b5015..0f24006 100644 --- a/action.yml +++ b/action.yml @@ -20,6 +20,10 @@ inputs: description: 'GH_TOKEN for Auto' required: false default: ${{ github.token }} + origin-repo: + description: 'Where to get the release artifacts' + required: false + default: 'intuit/auto' runs: using: composite steps: @@ -41,7 +45,7 @@ runs: gh release \ download ${{ inputs.version }} \ - --repo intuit/auto \ + --repo ${{ inputs.origin-repo }} \ --pattern "$name.gz" \ --dir "$tmp" gunzip "$tmp/$name.gz" From f4bff61c6c1026f3aa7bd6fed26345ad607a407d Mon Sep 17 00:00:00 2001 From: Alexey Alekhin Date: Thu, 4 Sep 2025 17:01:41 +0200 Subject: [PATCH 2/3] use auto --version instead of --help --- action.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 0f24006..cf59e4a 100644 --- a/action.yml +++ b/action.yml @@ -57,5 +57,4 @@ runs: - name: Check Auto installation shell: bash - run: | - auto --help + run: auto --version From 2d692ae202f19f39d5008354cef3945580502e4d Mon Sep 17 00:00:00 2001 From: Alexey Alekhin Date: Thu, 4 Sep 2025 17:01:42 +0200 Subject: [PATCH 3/3] use auto --version instead of --help