ci: remove redundant single-entry matrix in test-podman-next workflow#3533
ci: remove redundant single-entry matrix in test-podman-next workflow#3533Ankitsinghsisodya wants to merge 1 commit intoknative:mainfrom
Conversation
The strategy matrix defined a single OS entry (ubuntu-latest) and then referenced it via matrix.os. This adds indirection with no benefit. Replace with a direct runs-on value. Fixes knative#3529
|
|
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Ankitsinghsisodya The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @Ankitsinghsisodya. Thanks for your PR. I'm waiting for a knative member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
There was a problem hiding this comment.
Pull request overview
Simplifies the scheduled “Func Podman Next Test” GitHub Actions workflow by removing an unnecessary single-entry matrix, keeping behavior the same while making the workflow easier to read.
Changes:
- Removes the
strategy.matrixblock that only containedubuntu-latest. - Replaces
runs-on: ${{ matrix.os }}withruns-on: ubuntu-latest.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary
strategy.matrixblock intest-podman-next.yamlwhich contained only one entry (ubuntu-latest)runs-on: ${{ matrix.os }}with the directruns-on: ubuntu-latestTest plan
Func Podman Next Testworkflow still triggers on schedule and runs onubuntu-latestFixes #3529