a10956744d
Replace the branch-based reference with @main for the plugin-e2e reusable workflow. The @main branch of .github is protected and already contains all necessary pnpm support. This removes the drift risk from referencing a non-protected branch. Refs: PRI-1001 Co-Authored-By: Paperclip <noreply@paperclip.ing>
24 lines
412 B
YAML
24 lines
412 B
YAML
name: E2E Tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: e2e-${{ github.repository }}
|
|
cancel-in-progress: false
|
|
|
|
jobs:
|
|
e2e:
|
|
uses: privilegedescalation/.github/.github/workflows/plugin-e2e.yaml@main
|
|
with:
|
|
node-version: '22'
|
|
headlamp-version: v0.40.1
|
|
e2e-namespace: headlamp-dev
|