Skip to content

Commit 335777e

Browse files
authored
Remove VersionVigilante from the list of default workflows (#39)
1 parent 68e025d commit 335777e

4 files changed

Lines changed: 2 additions & 13 deletions

File tree

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MassInstallAction"
22
uuid = "e162569b-3ff4-40cf-b055-1e5f8042da73"
33
authors = ["Dilum Aluthge"]
4-
version = "1.0.0"
4+
version = "2.0.0"
55

66
[deps]
77
GitHub = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ Some workflows have convenient helpers:
1616
julia> workflow = MassInstallAction.compat_helper() # workflow for https://github.com/JuliaRegistries/CompatHelper.jl
1717

1818
julia> workflow = MassInstallAction.tag_bot() # workflow for https://github.com/JuliaRegistries/TagBot
19-
20-
julia> workflow = MassInstallAction.version_vigilante() # workflow for https://github.com/bcbi/VersionVigilante.jl
2119
```
2220

2321
or you can create your own:

src/MassInstallAction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Install or update GitHub Action workflows on repositories
55
66
API (all require qualification with `MassInstallAction`):
77
8-
- Workflow creation: `Workflow`, `compat_helper`, `tag_bot`, `version_vigilante`
8+
- Workflow creation: `Workflow`, `compat_helper`, `tag_bot`
99
- Workflow installation: `install`
1010
"""
1111
module MassInstallAction

src/default_workflows.jl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,3 @@ function tag_bot()
1515
files_to_delete = Set{String}()
1616
return Workflow(name, files_to_create, files_to_delete)
1717
end
18-
19-
function version_vigilante()
20-
name = "VersionVigilante"
21-
files_to_create = Dict{String, String}()
22-
files_to_create["VersionVigilante_bors.yml"] = String(HTTP.get("https://raw.githubusercontent.com/bcbi/VersionVigilante.jl/master/.github/workflows/VersionVigilante_bors.yml").body)
23-
files_to_create["VersionVigilante_pull_request.yml"] = String(HTTP.get("https://raw.githubusercontent.com/bcbi/VersionVigilante.jl/master/.github/workflows/VersionVigilante_pull_request.yml").body)
24-
files_to_delete = Set{String}(["VersionVigilante.yml"])
25-
return Workflow(name, files_to_create, files_to_delete)
26-
end

0 commit comments

Comments
 (0)