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

Commit e73e22d

Browse files
cloudalchemybotpaulfantom
authored andcommitted
🤖 sync with cloudalchemy/skeleton (SHA: 7fd422dc): Update releaser.sh (#15)
1 parent 7d4d114 commit e73e22d

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
@@ -5,7 +5,7 @@ galaxy_info:
55
role_name: process_exporter
66
license: MIT
77
company: none
8-
min_ansible_version: 2.6
8+
min_ansible_version: 2.7
99
platforms:
1010
- name: Ubuntu
1111
versions:
@@ -22,6 +22,7 @@ galaxy_info:
2222
- name: Fedora
2323
versions:
2424
- 30
25+
- 31
2526
galaxy_tags:
2627
- monitoring
2728

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)