Fix the New-TssSecretDependency command #77
Workflow file for this run
This file contains 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: Validate Target Branch | |
on: | |
pull_request: | |
branches: dev | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Target branch should be development | |
shell: pwsh | |
run: | | |
if ($env:GITHUB_BASE_REF -ne 'dev') { | |
Write-Host "Base branch set to: $env:GITHUB_BASE_REF" | |
throw "Target branch not set to development" | |
} else { | |
Write-Host "Base branch set properly to $env:GITHUB_BASE_REF" | |
} |