patch: test #19
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: Jenkins Security Scan | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
types: [ opened, synchronize, reopened ] | ||
workflow_dispatch: | ||
jobs: | ||
use_api: | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
Check failure on line 23 in .github/workflows/test.yml GitHub Actions / Jenkins Security ScanInvalid workflow file
|
||
cd .. | ||
gh repo clone jenkinsci/uipath-automation-package-plugin uipath-automation-package-plugin2 | ||
ls | ||
cd uipath-automation-package-plugin2 | ||
mv ../uipath-automation-package-plugin/azure-pipelines.yml azure-pipelines.yml | ||
git checkout -b feat/test-12 | ||
git config --global user.name "tibrnui" | ||
git add . | ||
git commit -m "test" | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
git push --set-upstream origin feat/test-12 | ||
gh pr create --base develop --head feat/test-12 |