Update secrets-scan.yml #4
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: Example Pipeline | |
on: [push, pull_request] # Trigger on push or pull request events | |
jobs: | |
build: | |
runs-on: self-hosted # Specifies to run on a self-hosted runner | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run a sample script | |
run: echo "Running pipeline on local machine" | |
- name: Run a sample script | |
run: mkdir newTest |