Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/functions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -247,12 +247,12 @@ jobs:
test-e2e-podman:
name: E2E - Podman
needs: precheck
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "ubuntu-latest" # x86_64
- "ubuntu-24.04-arm" # ARM64
runs-on: ${{ matrix.os }}
Comment on lines 249 to +255
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description/test plan says this is a no-functional-change update to add least-privilege permissions for test-podman-next.yaml, but this diff also changes the test-e2e-podman job to run on matrix.os (enabling the ARM64 runner entry in the matrix). Please update the PR description (and test plan) to reflect this additional CI behavior change, or split it into a separate PR if it’s unrelated to #3539.

Copilot uses AI. Check for mistakes.
env:
FUNC_CLUSTER_RETRIES: 5
FUNC_E2E_PODMAN: true
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test-podman-next.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Func Podman Next Test

permissions:
contents: read

on:
schedule:
- cron: '0 2 * * *'
Expand Down
Loading