File tree Expand file tree Collapse file tree 1 file changed +45
-2
lines changed Expand file tree Collapse file tree 1 file changed +45
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : TagBot
2
+
2
3
on :
3
4
issue_comment :
4
5
types :
5
6
- created
6
7
workflow_dispatch :
8
+ inputs :
9
+ lookback :
10
+ default : " 3"
11
+
12
+ permissions :
13
+ actions : read
14
+ checks : read
15
+ contents : write
16
+ deployments : read
17
+ issues : read
18
+ discussions : read
19
+ packages : read
20
+ pages : read
21
+ pull-requests : read
22
+ repository-projects : read
23
+ security-events : read
24
+ statuses : read
25
+
7
26
jobs :
8
- TagBot :
27
+ TagBot-NonlinearSolve :
9
28
if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10
29
runs-on : ubuntu-latest
11
30
steps :
12
- - uses : JuliaRegistries/TagBot@v1
31
+ - name : Tag NonlinearSolve
32
+ uses : JuliaRegistries/TagBot@v1
13
33
with :
14
34
token : ${{ secrets.GITHUB_TOKEN }}
15
35
ssh : ${{ secrets.DOCUMENTER_KEY }}
36
+
37
+ TagBot-Subpackages :
38
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
39
+ runs-on : ubuntu-latest
40
+ strategy :
41
+ fail-fast : false
42
+ matrix :
43
+ package :
44
+ - BracketingNonlinearSolve
45
+ - NonlinearSolveBase
46
+ - NonlinearSolveFirstOrder
47
+ - NonlinearSolveQuasiNewton
48
+ - NonlinearSolveSpectralMethods
49
+ - SCCNonlinearSolve
50
+ - SciMLJacobianOperators
51
+ - SimpleNonlinearSolve
52
+ steps :
53
+ - name : Tag ${{ matrix.package }}
54
+ uses : JuliaRegistries/TagBot@v1
55
+ with :
56
+ token : ${{ secrets.GITHUB_TOKEN }}
57
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
58
+ subdir : " lib/${{ matrix.package }}"
You can’t perform that action at this time.
0 commit comments