Skip to content

Commit dfacb1a

Browse files
authored
Merge pull request #14 from kamangir/GITHUB_EVENT-2025-01-18-4xot6c
@git push <message> ~workflow
2 parents 635e544 + 08e161c commit dfacb1a

File tree

5 files changed

+13
-2
lines changed

5 files changed

+13
-2
lines changed

β€Ž.github/workflows/bashtest.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on: [push]
55
jobs:
66
bashtest:
77
runs-on: ubuntu-latest
8+
if: "! contains(github.event.head_commit.message, 'no-workflow')"
89
steps:
910
- uses: actions/checkout@v3
1011
- name: Set up Python 3.10

β€Ž.github/workflows/pylint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on: [push]
55
jobs:
66
build:
77
runs-on: ubuntu-latest
8+
if: "! contains(github.event.head_commit.message, 'no-workflow')"
89
strategy:
910
matrix:
1011
python-version: ["3.8", "3.9", "3.10"]

β€Ž.github/workflows/pytest.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,17 @@ name: pytest
33
on: [push]
44

55
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+
614
build:
715
runs-on: ubuntu-latest
16+
if: "! contains(github.event.head_commit.message, 'no-workflow')"
817
strategy:
918
matrix:
1019
python-version: ["3.8", "3.9", "3.10"]

β€ŽREADME.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ pip install blue-plugin
4646

4747
[![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)
4848

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).

β€Žblue_plugin/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
DESCRIPTION = f"{ICON} a git template for an awesome-bash-cli plugin."
66

7-
VERSION = "3.182.1"
7+
VERSION = "3.207.1"
88

99
REPO_NAME = "blue-plugin"
1010

0 commit comments

Comments
Β (0)