Skip to content

Commit fc9ab0c

Browse files
authored
Merge pull request #49 from JuliaAI/fix-tag-bot
update TagBot.yml
2 parents 3fe85be + fe9b8e9 commit fc9ab0c

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/TagBot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
710
jobs:
811
TagBot:
912
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +15,6 @@ jobs:
1215
- uses: JuliaRegistries/TagBot@v1
1316
with:
1417
token: ${{ secrets.GITHUB_TOKEN }}
18+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
1519
ssh: ${{ secrets.DOCUMENTER_KEY }}
20+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1515
MLJ = "0.18, 0.19, 0.20, 0.21"
1616
MLJModels = "0.16, 0.17, 0.18"
1717
MLJTestInterface = "0.2.4"
18+
MLJTransforms = "0.1.3"
1819
NearestNeighborModels = "0.2"
1920
Pkg = "<0.0.1, 1"
2021
Test = "<0.0.1, 1"
@@ -23,7 +24,8 @@ julia = "1.10"
2324
[extras]
2425
MLJDecisionTreeInterface = "c6f25543-311c-4c74-83dc-3ea6d1015661"
2526
MLJModels = "d491faf4-2d78-11e9-2867-c94bc002c0b7"
27+
MLJTransforms = "23777cdb-d90c-4eb0-a694-7c2b83d5c1d6"
2628
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2729

2830
[targets]
29-
test = ["MLJDecisionTreeInterface", "MLJModels", "Test"]
31+
test = ["MLJDecisionTreeInterface", "MLJModels", "MLJTransforms", "Test"]

test/datasets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const MTI = MLJTestIntegration
66

77
Rgs = @load KNNRegressor pkg=NearestNeighborModels verbosity=0
88
Clf = @load KNNClassifier pkg= NearestNeighborModels verbosity=0
9-
Trf = @load Standardizer pkg=MLJModels verbosity=0
9+
Trf = @load Standardizer pkg=MLJTransforms verbosity=0
1010

1111
Rgs_proxy = models() do m
1212
m.name == "KNNRegressor" && m.package_name == "NearestNeighborModels"

0 commit comments

Comments
 (0)