@@ -57,10 +57,10 @@ jobs:
5757 issue_number: existingIssue.number,
5858 body: `Another test failure occurred on ${context.sha.substring(0, 7)}.
5959
60- **Failed Jobs:**
61- - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
60+ **Failed Jobs:**
61+ - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
6262
63- **Date:** ${new Date().toISOString().split('T')[0]}`
63+ **Date:** ${new Date().toISOString().split('T')[0]}`
6464 });
6565 await core.notice(`Updated existing issue ${existingIssue.html_url}`);
6666
@@ -72,16 +72,16 @@ jobs:
7272 title: `Scheduled CI Tests Failed - ${new Date().toISOString().split('T')[0]}`,
7373 body: `The scheduled CI tests failed on ${context.sha.substring(0, 7)}.
7474
75- **Failed Jobs:**
76- - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
75+ **Failed Jobs:**
76+ - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
7777
78- **Likely Causes:**
79- - New dependency versions with breaking changes
78+ **Likely Causes:**
79+ - New dependency versions with breaking changes
8080
81- **Next Steps:**
82- - Review the logs above
83- - Update code for new dependencies or limit package versions
84- - Re-run the workflow to verify fixes`,
81+ **Next Steps:**
82+ - Review the logs above
83+ - Update code for new dependencies or limit package versions
84+ - Re-run the workflow to verify fixes`,
8585 labels: ['scheduled-ci-tests'],
8686 assignees: [context.repo.owner],
8787 });
@@ -130,10 +130,10 @@ jobs:
130130 issue_number: existingIssue.number,
131131 body: `Another audit failure occurred on ${context.sha.substring(0, 7)}.
132132
133- **Failed Jobs:**
134- - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
133+ **Failed Jobs:**
134+ - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
135135
136- **Date:** ${new Date().toISOString().split('T')[0]}`
136+ **Date:** ${new Date().toISOString().split('T')[0]}`
137137 });
138138 await core.notice(`Updated existing issue ${existingIssue.html_url}`);
139139
@@ -145,16 +145,16 @@ jobs:
145145 title: `Scheduled CI Audit Failed - ${new Date().toISOString().split('T')[0]}`,
146146 body: `The scheduled CI audit check failed on ${context.sha.substring(0, 7)}.
147147
148- **Failed Jobs:**
149- - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
148+ **Failed Jobs:**
149+ - Check the [workflow run](${context.payload.repository.html_url}/actions/runs/${context.runId})
150150
151- **Likely Causes:**
152- - New security vulnerabilities detected by pip-audit
151+ **Likely Causes:**
152+ - New security vulnerabilities detected by pip-audit
153153
154- **Next Steps:**
155- - Review the logs above
156- - Update locked dependencies
157- - Re-run the workflow to verify fixes`,
154+ **Next Steps:**
155+ - Review the logs above
156+ - Update locked dependencies
157+ - Re-run the workflow to verify fixes`,
158158 labels: ['scheduled-ci-audit'],
159159 assignees: [context.repo.owner],
160160 });
0 commit comments