open-source

modify-vipb-display-info workflow

Purpose

Dispatch the modify-vipb-display-info action to a target repository through Invoke-OSAction.ps1.

Parameters

Inputs

Parameter Description
repository Repository in owner/repo format to operate on.
ref Branch or tag to check out. Defaults to main.

Secrets

Secret Description
REPO_TOKEN Personal access token with permission to read the target repository.

Examples

name: modify-vipb-display-info
on:
  workflow_dispatch:
    inputs:
      repository:
        description: 'owner/repo of the repository to target'
        required: true
      ref:
        description: 'Branch or tag to check out'
        required: false
        default: 'main'
jobs:
  modify-vipb-display-info:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Checkout target repository
        uses: actions/checkout@v4
        with:
          repository: $
          ref: $
          path: target
          token: $
      - name: Run modify-vipb-display-info
        shell: pwsh
        run: ./actions/Invoke-OSAction.ps1 -ActionName modify-vipb-display-info -WorkingDirectory "$/target"

Return Codes

See also