Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 113c7e9

Browse files
cloudalchemybotpaulfantom
authored andcommitted
[REPO SYNC] Update releaser.sh (#120)
1 parent cd57c1c commit 113c7e9

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ cache: pip
88
services:
99
- docker
1010
env:
11-
- ANSIBLE=2.6
1211
- ANSIBLE=2.7
1312
- ANSIBLE=2.8
13+
- ANSIBLE=2.9
1414
matrix:
1515
fast_finish: true
1616
install:

.travis/releaser.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ GIT_URL=${GIT_URL#*//}
4141
GIT_TAG=none
4242
echo "Last commit message: $TRAVIS_COMMIT_MESSAGE"
4343
case "${TRAVIS_COMMIT_MESSAGE}" in
44-
*"[patch]"*|*"[fix]"* ) GIT_TAG=$(git semver --next-patch) ;;
44+
*"[patch]"*|*"[fix]"*|*"[bugfix]"* ) GIT_TAG=$(git semver --next-patch) ;;
4545
*"[minor]"*|*"[feat]"*|*"[feature]"* ) GIT_TAG=$(git semver --next-minor) ;;
4646
*"[major]"*|*"[breaking change]"* ) GIT_TAG=$(git semver --next-major) ;;
4747
*) echo "Keyword not detected. Doing nothing" ;;

meta/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ galaxy_info:
44
description: Prometheus Node Exporter
55
license: MIT
66
company: none
7-
min_ansible_version: 2.6
7+
min_ansible_version: 2.7
88
platforms:
99
- name: Ubuntu
1010
versions:
@@ -21,6 +21,7 @@ galaxy_info:
2121
- name: Fedora
2222
versions:
2323
- 30
24+
- 31
2425
galaxy_tags:
2526
- monitoring
2627
- prometheus

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[tox]
22
minversion = 1.8
3-
envlist = py{35}-ansible{26,27,28}
3+
envlist = py{35}-ansible{27,28,29}
44
skipsdist = true
55

66
[travis:env]
77
ANSIBLE=
8-
2.6: ansible26
98
2.7: ansible27
109
2.8: ansible28
10+
2.9: ansible29
1111

1212
[testenv]
1313
passenv = *
1414
deps =
1515
-rtest-requirements.txt
16-
ansible26: ansible<2.7
1716
ansible27: ansible<2.8
1817
ansible28: ansible<2.9
18+
ansible29: ansible<2.10
1919
commands =
2020
{posargs:molecule test --all --destroy always}

0 commit comments

Comments
 (0)