Skip to content

Commit

Permalink
Get input from cause instead of message (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
chamini2 authored Mar 3, 2022
1 parent 1d1e66c commit 8d8ada1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async function executeAction() {

const account_id=core.getInput('dbt_cloud_account_id');
const job_id=core.getInput('dbt_cloud_job_id');
const cause=core.getInput('message');
const cause=core.getInput('cause');

let res = await runJob(account_id, job_id, cause);
let run_id = res.data.id;
Expand Down

0 comments on commit 8d8ada1

Please sign in to comment.