File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 4444 script : |
4545 // Determine if this is a dry run
4646 const isManual = context.eventName === 'workflow_dispatch';
47- const dryRun = isManual ? context.payload.inputs.dry_run === true : false;
47+ const dryRun = isManual ? String( context.payload.inputs.dry_run).toLowerCase() === ' true' : false;
4848
4949 // Labels configuration
5050 const targetLabels = ['broken-markdown-links', 'automated'];
Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
117117- Fix unit test tet_query.py
118118- TLS Hostname Mismatch & Certificate Verification Failure for Nodes
119119- Workflow does not contain permissions for ` pr-check-test-files ` and ` pr-check-codecov `
120+ - Fixed ` cron-check-broken-links.yml ` string parsing issue in context input ` dry_run ` (#1235 )
120121- Flaky tests by disabling TLS in mock Hedera nodes in ` mock_server.py `
121122
122123
You can’t perform that action at this time.
0 commit comments