Skip to content

Commit 12ae624

Browse files
Update Project.toml (#38)
* Update Project.toml * Update TagBot.yml
1 parent f6ec906 commit 12ae624

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/TagBot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment: # THIS BIT IS NEW
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
# THIS 'if' LINE IS NEW
10+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11+
# NOTHING BELOW HAS CHANGED
712
runs-on: ubuntu-latest
813
steps:
914
- uses: JuliaRegistries/TagBot@v1

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "InteractiveFixedEffectModels"
22
uuid = "80307280-efb2-5c5d-af8b-a9c15821677b"
3-
version = "1.1.0"
3+
version = "1.1.1"
44

55
[deps]
66
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
@@ -19,11 +19,11 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1919
Vcov = "ec2bfdc2-55df-4fc9-b9ae-4958c2cf2486"
2020

2121
[compat]
22-
DataFrames = "0.21"
23-
FillArrays = "0.7, 0.8, 0.9"
22+
DataFrames = "0.21, 0.22"
23+
FillArrays = "0.7, 0.8, 0.9, 0.10"
2424
FixedEffectModels = "1.3"
2525
FixedEffects = "2"
26-
LeastSquaresOptim = "0.7"
26+
LeastSquaresOptim = "0.7, 0.8"
2727
Reexport = "0.2"
2828
StatsBase = "0.33"
2929
StatsModels = "0.6"

0 commit comments

Comments
 (0)