Skip to content

Commit db382de

Browse files
tmikula-devmiroslavpojer
authored andcommitted
CodeRabbit bug fixes (#221)
* CodeRabbit bug fixes.
1 parent 2e4ffe5 commit db382de

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed

.github/ISSUE_TEMPLATE/documentation_task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
required: true
1818

1919
- type: textarea
20-
id: current_state
20+
id: current-state
2121
attributes:
2222
label: Current State (If Updating)
2323
description: Briefly describe existing content or gap.
@@ -26,7 +26,7 @@ body:
2626
required: false
2727

2828
- type: textarea
29-
id: proposed_changes
29+
id: proposed-changes
3030
attributes:
3131
label: Proposed Changes
3232
description: Key additions, removals, or restructures.

.github/workflows/release_draft.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6666
with:
6767
tag-name: ${{ github.event.inputs.tag-name }}
68+
from-tag-name: ${{ github.event.inputs.from-tag-name }}
6869
chapters: |
6970
- {"title": "Entries to skip 🚫", "label": "duplicate"}
7071
- {"title": "Entries to skip 🚫", "label": "invalid"}
@@ -89,9 +90,11 @@ jobs:
8990

9091
- name: Create and Push Tag
9192
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
93+
env:
94+
TAG_NAME: ${{ github.event.inputs.tag-name }}
9295
with:
9396
script: |
94-
const tag = core.getInput('tag-name')
97+
const tag = process.env.TAG_NAME
9598
const ref = `refs/tags/${tag}`;
9699
const sha = context.sha; // The SHA of the commit to tag
97100
@@ -104,7 +107,6 @@ jobs:
104107
105108
console.log(`Tag created: ${tag}`);
106109
github-token: ${{ secrets.GITHUB_TOKEN }}
107-
tag-name: ${{ github.event.inputs.tag-name }}
108110

109111
- name: Create Draft Release
110112
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b

.pylintrc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,6 @@ recursive=no
104104
# source root.
105105
source-roots=
106106

107-
# When enabled, pylint would attempt to guess common misconfiguration and emit
108-
# user-friendly hints instead of false-positive error messages.
109-
suggestion-mode=yes
110-
111107
# Allow loading of arbitrary C extensions. Extensions are imported into the
112108
# active Python interpreter and may run arbitrary code.
113109
unsafe-load-any-extension=no

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
pytest==8.4.2
2-
pytest-cov==6.3.0
3-
pytest-mock==3.15.0
4-
pylint==3.3.8
1+
pytest==9.0.1
2+
pytest-cov==7.0.0
3+
pytest-mock==3.15.1
4+
pylint==4.0.4
55
requests==2.32.5
66
black==25.11.0
77
PyYAML==6.0.3

0 commit comments

Comments
 (0)