This repository was archived by the owner on Aug 15, 2025. It is now read-only.
T7658: T7656: Changes for max-map-count parameter #52
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
name: Trigger to build 'vyos-vpp' | |
on: | |
pull_request_target: | |
types: | |
- closed | |
branches: | |
- current | |
workflow_dispatch: | |
jobs: | |
get_repo_name: | |
runs-on: ubuntu-latest | |
outputs: | |
PACKAGE_NAME: ${{ steps.package_name.outputs.PACKAGE_NAME }} | |
steps: | |
- name: Set variables | |
id: package_name | |
run: | | |
echo "PACKAGE_NAME=$(basename ${{ github.repository }})" >> $GITHUB_OUTPUT | |
trigger-build: | |
needs: get_repo_name | |
uses: vyos/.github/.github/workflows/trigger-rebuild-repo-package.yml@current | |
with: | |
branch: ${{ github.ref_name }} | |
package_name: vyos-1x # We trigger the "vyos-1x" package to rebuild, not "vyos-vpp" | |
secrets: | |
REMOTE_OWNER: ${{ secrets.REMOTE_OWNER }} | |
REMOTE_REUSE_REPO: ${{ secrets.REMOTE_REUSE_REPO }} | |
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | |
PAT: ${{ secrets.PAT }} |