Skip to content

Commit

Permalink
Fix typo in function
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Feb 5, 2024
1 parent 701710d commit 1e7488d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
const script = require('./scripts/ghactions/comment-on-pr.js');
const commentTitle = "Ansible Run Output";
const ansiblePlaybookOutput = `${{ steps.playbook.outputs.ansible_playbook}}`;
const parts = playbookOutput.split("/^PLAY RECAP \*+/");
const parts = ansiblePlaybookOutput.split("/^PLAY RECAP \*+/");
const ansiblePlaybookRecap = parts.length > 1 ? parts[1].trim() : '';
const commentBody = `
Expand Down

0 comments on commit 1e7488d

Please sign in to comment.