From d739035e4457425a0aabf01ddb12dd9607e0b804 Mon Sep 17 00:00:00 2001 From: Javier Bullrich Date: Thu, 30 Mar 2023 18:48:14 +0200 Subject: [PATCH] created action.yml file --- action.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..2f781e1 --- /dev/null +++ b/action.yml @@ -0,0 +1,31 @@ +name: "Stale Issues Finder" +description: "Find what issues have been stale for a given time" +author: paritytech +branding: + icon: zoom-in + color: white +inputs: + GITHUB_TOKEN: + required: true + description: The token to access the repo + repo: + required: false + description: The repository to fetch the issues from + owner: + required: false + description: The name of the org/user that owns the repository + days-stale: + required: false + description: How many days have to pass to consider an action "stale" + default: '5' +outputs: + repo: + description: 'The name of the repo in owner/repo pattern' + stale: + description: 'A JSON object with the data' + message: + description: 'A markdown formatted message' + +runs: + using: 'docker' + image: 'Dockerfile'