Skip to content

Commit 41e0ef6

Browse files
committed
CI/CD: Removed failing step on lint commits workflow
1 parent bdb5a34 commit 41e0ef6

File tree

2 files changed

+1
-14
lines changed

2 files changed

+1
-14
lines changed

.github/workflows/lint-commits.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,3 @@ jobs:
7474
if (errors.length > 0) {
7575
core.setFailed(`One or more of the commits in this PR do not match the code submission policy:\n\n${errors.join("\n")}`);
7676
}
77-
78-
- name: Comment on PR
79-
uses: actions/github-script@v7
80-
if: ${{ failure() && !github.event.pull_request.draft }}
81-
with:
82-
github-token: ${{ secrets.GH_ACCESS_KEY }}
83-
script: |
84-
github.rest.issues.createComment({
85-
issue_number: context.issue.number,
86-
owner: 'Seluj78',
87-
repo: 'shellhub-python',
88-
body: 'Hello!\n\nOne or more of the commit messages in this PR do not match the code style. Please check the `lint_commits` CI job for more details on which commits were flagged and why.\nPlease do not close this PR and open another, instead modify your commit message(s) with [git commit --amend](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message) and force push those changes to update this PR.'
89-
})

shellhub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Increment versions here according to SemVer
2-
__version__ = "0.2.3"
2+
__version__ = "0.2.4"
33

44
from .models.device import ShellHubDevice, ShellHubDeviceInfo
55
from .models.base import ShellHub

0 commit comments

Comments
 (0)