From 7e40f8fac7cd57a63032ea4010a89a3f420f73ec Mon Sep 17 00:00:00 2001 From: Alex Ivanov Date: Tue, 19 Mar 2024 17:29:00 +0000 Subject: [PATCH] create in-cloud action.yml --- in-cloud/action.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 in-cloud/action.yml diff --git a/in-cloud/action.yml b/in-cloud/action.yml new file mode 100644 index 00000000..99e163b9 --- /dev/null +++ b/in-cloud/action.yml @@ -0,0 +1,22 @@ +name: "Meticulous - Report Diffs (In Cloud)" +description: "Run automated Meticulous tests in Meticulous' cloud." +inputs: + api-token: + description: "Meticulous API token" + required: true + github-token: + description: "GITHUB_TOKEN or a repo scoped PAT." + required: true + default: ${{ github.token }} + app-url: + description: | + The URL to execute the tests against. This URL should serve the code from the current commit (e.g. a localhost URL served up by a local server). + required: true + +outputs: {} +runs: + using: node20 + main: "../out/in-cloud.entrypoint.js" +branding: + color: purple + icon: camera