We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ef6998 commit b3c60c2Copy full SHA for b3c60c2
.github/workflows/frogbot-scan-pull-request.yml
@@ -0,0 +1,21 @@
1
+
2
+jobs:
3
+ scan-pull-request:
4
+ runs-on: ubuntu-latest
5
+ # A pull request needs to be approved before Frogbot scans it. Any GitHub user who is associated with the
6
+ # "frogbot" GitHub environment can approve the pull request to be scanned.
7
+ environment: frogbot
8
+ steps:
9
+ - uses: jfrog/frogbot@v2
10
+ env:
11
+ # [Mandatory]
12
+ # JFrog platform URL
13
+ JF_URL: ${{ secrets.JF_URL }}
14
15
+ # [Mandatory if JF_USER and JF_PASSWORD are not provided]
16
+ # JFrog access token with 'read' permissions on Xray service
17
+ JF_ACCESS_TOKEN: ${{ secrets.JF_TOKEN }}
18
19
20
+ # The GitHub token is automatically generated for the job
21
+ JF_GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments