File tree Expand file tree Collapse file tree 5 files changed +13
-2
lines changed Expand file tree Collapse file tree 5 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ on: [push]
5
5
jobs :
6
6
bashtest :
7
7
runs-on : ubuntu-latest
8
+ if : " ! contains(github.event.head_commit.message, 'no-workflow')"
8
9
steps :
9
10
- uses : actions/checkout@v3
10
11
- name : Set up Python 3.10
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ on: [push]
5
5
jobs :
6
6
build :
7
7
runs-on : ubuntu-latest
8
+ if : " ! contains(github.event.head_commit.message, 'no-workflow')"
8
9
strategy :
9
10
matrix :
10
11
python-version : ["3.8", "3.9", "3.10"]
Original file line number Diff line number Diff line change @@ -3,8 +3,17 @@ name: pytest
3
3
on : [push]
4
4
5
5
jobs :
6
+ log-commit-message :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v3
10
+ - name : Log commit message
11
+ run : |
12
+ echo "Commit message: '${{ github.event.head_commit.message }}'"
13
+
6
14
build :
7
15
runs-on : ubuntu-latest
16
+ if : " ! contains(github.event.head_commit.message, 'no-workflow')"
8
17
strategy :
9
18
matrix :
10
19
python-version : ["3.8", "3.9", "3.10"]
Original file line number Diff line number Diff line change @@ -46,4 +46,4 @@ pip install blue-plugin
46
46
47
47
[ ![ pylint] ( https://github.com/kamangir/blue-plugin/actions/workflows/pylint.yml/badge.svg )] ( https://github.com/kamangir/blue-plugin/actions/workflows/pylint.yml ) [ ![ pytest] ( https://github.com/kamangir/blue-plugin/actions/workflows/pytest.yml/badge.svg )] ( https://github.com/kamangir/blue-plugin/actions/workflows/pytest.yml ) [ ![ bashtest] ( https://github.com/kamangir/blue-plugin/actions/workflows/bashtest.yml/badge.svg )] ( https://github.com/kamangir/blue-plugin/actions/workflows/bashtest.yml ) [ ![ PyPI version] ( https://img.shields.io/pypi/v/blue-plugin.svg )] ( https://pypi.org/project/blue-plugin/ ) [ ![ PyPI - Downloads] ( https://img.shields.io/pypi/dd/blue-plugin )] ( https://pypistats.org/packages/blue-plugin )
48
48
49
- built by π [ ` blue_options-4.177 .1 ` ] ( https://github.com/kamangir/awesome-bash-cli ) , based on π [ ` blue_plugin-3.182 .1 ` ] ( https://github.com/kamangir/blue-plugin ) .
49
+ built by π [ ` blue_options-4.192 .1 ` ] ( https://github.com/kamangir/awesome-bash-cli ) , based on π [ ` blue_plugin-3.207 .1 ` ] ( https://github.com/kamangir/blue-plugin ) .
Original file line number Diff line number Diff line change 4
4
5
5
DESCRIPTION = f"{ ICON } a git template for an awesome-bash-cli plugin."
6
6
7
- VERSION = "3.182 .1"
7
+ VERSION = "3.207 .1"
8
8
9
9
REPO_NAME = "blue-plugin"
10
10
You canβt perform that action at this time.
0 commit comments