Skip to content

patch: test

patch: test #2

Workflow file for this run

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 }}
run: |
git checkout -b feat/test-12
touch test
git add .
git commit -m "test"
git remote set-url origin https://uipath:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY
git push --set-upstream origin feat/test-12
gh pr create --base develop --head feat/test-12