[gha] Bump open-edge-platform/orch-ci/.github/workflows/pre-merge.yml from 2026.0.12 to 2026.0.13 #1208
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| # SPDX-FileCopyrightText: (C) 2025 Intel Corporation | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: ARM Component Tests | |
| on: | |
| pull_request: | |
| types: [labeled] | |
| schedule: | |
| - cron: "0 0 * * *" # Run every day at midnight | |
| workflow_dispatch: # Run on manual trigger | |
| inputs: | |
| run-arm: | |
| description: 'Run App Resource Manager component tests' | |
| required: true | |
| type: boolean | |
| default: false | |
| emf-branch: | |
| description: 'The branch, tag or SHA to checkout EMF' | |
| required: true | |
| type: string | |
| default: '51d847c5b3a831454981f5fce7cecbbe1ade5e87' | |
| permissions: | |
| contents: read | |
| jobs: | |
| component-test-arm: | |
| if: ${{ inputs.run-arm || github.event_name == 'schedule' || github.event.label.name == 'run-arm-component-tests' }} | |
| name: ARM Component Test | |
| uses: ./.github/workflows/common-comp-tests.yml | |
| with: | |
| component: app-resource-manager | |
| use-enic: true | |
| emf-branch: ${{ inputs.emf-branch || '51d847c5b3a831454981f5fce7cecbbe1ade5e87' }} | |
| secrets: inherit # zizmor: ignore[secrets-inherit] |