Skip to content

Commit 58d9adc

Browse files
committed
fix: remove test warning from git_ops
1 parent 5efd430 commit 58d9adc

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

config/config.exs

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
use Mix.Config
22

3-
config :git_ops,
4-
mix_project: Ash.MixProject,
5-
changelog_file: "CHANGELOG.md",
6-
repository_url: "https://github.com/ash-project/ash",
7-
# Instructs the tool to manage your mix version in your `mix.exs` file
8-
# See below for more information
9-
manage_mix_version?: true,
10-
# Instructs the tool to manage the version in your README.md
11-
# Pass in `true` to use `"README.md"` or a string to customize
12-
manage_readme_version: "README.md",
13-
version_tag_prefix: "v"
3+
if Mix.env() == :dev do
4+
config :git_ops,
5+
mix_project: Ash.MixProject,
6+
changelog_file: "CHANGELOG.md",
7+
repository_url: "https://github.com/ash-project/ash",
8+
# Instructs the tool to manage your mix version in your `mix.exs` file
9+
# See below for more information
10+
manage_mix_version?: true,
11+
# Instructs the tool to manage the version in your README.md
12+
# Pass in `true` to use `"README.md"` or a string to customize
13+
manage_readme_version: "README.md",
14+
version_tag_prefix: "v"
15+
end

0 commit comments

Comments
 (0)