File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Remove Label
2
+ on :
3
+ pull_request_target :
4
+ types : [labeled]
5
+ # Ensures that only the latest commit is running for each PR at a time.
6
+ concurrency :
7
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}-${{ github.ref }}
8
+ cancel-in-progress : true
9
+ jobs :
10
+ Remove-Label :
11
+ if : contains(github.event.pull_request.labels.*.name, 'safe to test')
12
+ name : Remove label
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Remove 'safe to test'
16
+ uses : actions-ecosystem/action-remove-labels@v1
17
+ with :
18
+ labels : " safe to test"
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ To install the *[JFrog Extension](https://marketplace.visualstudio.com/items?ite
88
88
89
89
### Installing the Build Agent
90
90
91
- To run the JFrog tasks, the build agents use three tools:
91
+ To run the JFrog tasks, the build agents use the following tools:
92
92
93
93
* JFrog CLI: Runs all the JFrog tasks.
94
94
* Maven Extractor (Used by the [ JFrog Maven] ( #jfrog-maven-task ) task)
You can’t perform that action at this time.
0 commit comments