Branch: refs/heads/yves/github_stop_using_secrets_for_switches Home: https://github.com/Perl/perl5 Commit: c3b3e571bd23dfca8d6b4ef4428b521fb817320d https://github.com/Perl/perl5/commit/c3b3e571bd23dfca8d6b4ef4428b521fb817320d Author: Yves Orton <demer...@gmail.com> Date: 2023-02-22 (Wed, 22 Feb 2023)
Changed paths: M .github/workflows/testsuite.yml Log Message: ----------- .github/workflows/testsuite.yml - switch from secrets to vars We have been using secrets to store boolean variables. This results in our CI output being annoyingly corrupted by the security eliding. Github now supports "variables" as well as secrets, which are not elided in CI output. So switch our test framework controls to use the variable. Note the EXTENDED_TESTING variable was switched from to DO_EXTENDED_TESTING so that we can have both the EXTENDED_TESTING /secret/ and the new DO_EXTENDED_TESTING variable available at the same time as this commit is processed. Fixes #20843