Skip to content

Commit

Permalink
Fix typo in action input
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisBoudreau committed Mar 14, 2022
1 parent 2c38518 commit 7ad91d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ping-slack:
id: current-run-conclusion
uses: agendrix/[email protected]
with:
deployments_outcome: ${{ needs.main_deployment.deployment_outcome }}
deployment_outcome: ${{ needs.main_deployment.deployment_outcome }}
- name: Ping Slack for outcome
uses: agendrix/slack-notifier/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "get-current-run-conclusion-action",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"description": "Compute the conclusion of the current Github actions workflow run",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async function getJobConclusions() {
}

function hasSkippedDeployments() {
let deploymentOutcome = core.getInput("deployments_outcome");
let deploymentOutcome = core.getInput("deployment_outcome");
try {
deploymentOutcome = JSON.parse(deploymentOutcome);
return deploymentOutcome.includes(DeploymentOutcome.SKIPPED);
Expand Down

0 comments on commit 7ad91d9

Please sign in to comment.