generated from agendrix/github-typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
20 lines (20 loc) · 872 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Get current run conclusion
description: Compute the conclusion of the current workflow run
author: "[email protected]"
inputs:
token:
required: true
description: "This should be a personal access token with access to your repository"
default: ${{ github.token }}
deployment_outcome:
required: false
description: >
Outcome of the deployment(s). If you want the action to verify multiple deployments, you must stringify. Accepted values are any values from DeploymentOutcome enum:
https://github.com/agendrix/wait-for-ecs-service-deployment-action/blob/main/src/ecs/types.ts Ex: needs.deploy.deployment_outcome or toJSON([needs.deploy-1.deployment_outcome,
needs.deploy-2.deployment_outcome])
outputs:
conclusion:
description: Conclusion of the current workflow run
runs:
using: "node20"
main: "dist/index.js"