generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
959d30f
commit c59b6f7
Showing
6 changed files
with
23 additions
and
122 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
name: 'The name of your action here' | ||
description: 'Provide a description here' | ||
author: 'Your name or organization here' | ||
name: 'SHFT PullMate' | ||
description: 'A GitHub Action that checks if a pull request meets the requirements of the SHFT workflow' | ||
author: 'SHFT' | ||
|
||
# Define your inputs here. | ||
inputs: | ||
milliseconds: | ||
description: 'Your input description here' | ||
reviewerRequired: | ||
description: 'Whether a reviewer is required or not' | ||
required: true | ||
default: '1000' | ||
|
||
default: 'true' | ||
asigneeRequired: | ||
description: 'Whether an asignee is required or not' | ||
required: true | ||
default: 'true' | ||
checklistRequired: | ||
description: 'Whether a checklist is required or not' | ||
required: true | ||
default: 'true' | ||
semanticTitleRequired: | ||
description: 'Whether a semantic title is required or not' | ||
required: true | ||
default: 'true' | ||
repoToken: | ||
description: 'The repository token' | ||
required: true | ||
|
||
# Define your outputs here. | ||
outputs: | ||
time: | ||
description: 'Your output description here' | ||
|
||
runs: | ||
using: node20 | ||
using: node18 | ||
main: dist/index.js |