-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'meniole-development' into fix/bulk
- Loading branch information
Showing
1 changed file
with
15 additions
and
9 deletions.
There are no files selected for viewing
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,16 +1,22 @@ | ||
name: "Conversation Rewards" | ||
description: "Compute rewards for contributors' discussion on issues that are closed as complete." | ||
inputs: | ||
stateId: | ||
description: "State Id" | ||
eventName: | ||
description: "Event Name" | ||
eventPayload: | ||
description: "Event Payload" | ||
settings: | ||
description: "Settings" | ||
authToken: | ||
description: "Auth Token" | ||
ref: | ||
description: "Ref" | ||
outputs: | ||
result: | ||
description: "The result containing all the rewards of the users" | ||
value: ${{ steps.main.outputs.result }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: | | ||
yarn --cwd ${{ github.action_path }} --production=true | ||
id: install | ||
shell: bash | ||
- run: yarn --cwd ${{ github.action_path }} start | ||
shell: bash | ||
id: main | ||
using: 'node20' | ||
main: 'dist/index.js' |