test: verify kubectl exec functionality (#21) #23
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: Auto Update PR | |
# On push to the main branch and support branches, update any branches that are out of date | |
# and have auto-merge enabled. If the branch is currently out of date with the base branch, | |
# it must be first manually updated and then will be kept up to date on future runs. | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
jobs: | |
Auto-Update-PR: | |
permissions: | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tibdex/auto-update@4081c5bdc34560b58288a010318054e63e6f4a51 | |
with: | |
github_token: ${{ secrets.SYS_ORCH_GITHUB }} |