PSWI-z/OSMF Workflow - Fixed the description for one variable used in workflow #614
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: Manifest SourceDependencies Verification | |
permissions: read-all | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
check-manifest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Dependencies for script to work | |
run: npm install | |
working-directory: .github/scripts/manifest_verification | |
- name: Run Check | |
run: node .github/scripts/manifest_verification/check_sources.js | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
BASE_REF: ${{ github.event.pull_request.base.ref }} |