[DOCs][Fixed] Test badge

- Also added link to changelog for the dev branch
This commit is contained in:
Salvador E. Tropea 2022-12-16 10:13:38 -03:00
parent b8cb51a996
commit ad009910bb
3 changed files with 5 additions and 4 deletions

View File

@ -2,12 +2,12 @@
![KiBot Logo](https://raw.githubusercontent.com/INTI-CMNB/KiBot/master/docs/images/kibot_740x400_logo.png)
[![Python application](https://img.shields.io/github/workflow/status/INTI-CMNB/KiBot/Python%20application?style=plastic)](https://github.com/INTI-CMNB/KiBot/actions)
[![Python application](https://img.shields.io/github/actions/workflow/status/INTI-CMNB/KiBot/pythonapp.yml?branch=dev&style=plastic)](https://github.com/INTI-CMNB/KiBot/actions)
[![Coverage Status](https://img.shields.io/coveralls/github/INTI-CMNB/KiBot?style=plastic)](https://coveralls.io/github/INTI-CMNB/KiBot?branch=master)
[![PyPI version](https://img.shields.io/pypi/v/kibot?style=plastic)](https://pypi.org/project/kibot/)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg?style=plastic)](https://www.paypal.com/donate/?hosted_button_id=K2T86GDTTMRPL)
# **This is the documentation for the current development KiBot, not yet released.**
# **This is the documentation for the current development KiBot, not yet released. To know what changed see the [changelog][CHANGELOG.md]**
**Important for CI/CD**:

View File

@ -2,7 +2,7 @@
![KiBot Logo](https://raw.githubusercontent.com/INTI-CMNB/KiBot/master/docs/images/kibot_740x400_logo.png)
[![Python application](https://img.shields.io/github/workflow/status/INTI-CMNB/KiBot/Python%20application?style=plastic)](https://github.com/INTI-CMNB/KiBot/actions)
[![Python application](https://img.shields.io/github/actions/workflow/status/INTI-CMNB/KiBot/pythonapp.yml?branch=@branch@&style=plastic)](https://github.com/INTI-CMNB/KiBot/actions)
[![Coverage Status](https://img.shields.io/coveralls/github/INTI-CMNB/KiBot?style=plastic)](https://coveralls.io/github/INTI-CMNB/KiBot?branch=master)
[![PyPI version](https://img.shields.io/pypi/v/kibot?style=plastic)](https://pypi.org/project/kibot/)
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg?style=plastic)](https://www.paypal.com/donate/?hosted_button_id=K2T86GDTTMRPL)

View File

@ -13,7 +13,7 @@ $branch=`git rev-parse --abbrev-ref HEAD`;
chomp($branch);
if ($branch ne "master")
{
$doc_id="# **This is the documentation for the current development KiBot, not yet released.**\n";
$doc_id="# **This is the documentation for the current development KiBot, not yet released. To know what changed see the [changelog][CHANGELOG.md]**\n";
}
else
{
@ -40,6 +40,7 @@ while (<>)
$_ =~ s/\@dependencies\@/$dependencies/;
$_ =~ s/\@json_dep\@/$json_dep/;
$_ =~ s/\@doc_id\@/$doc_id/;
$_ =~ s/\@branch\@/$branch/;
print $_;
}