Skip to content

Commit

Permalink
created action.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Bullrich committed Mar 30, 2023
1 parent 34bcecb commit d739035
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit d739035

Please sign in to comment.