File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed
Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 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.
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.
Original file line number Diff line number Diff line change 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"}
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
Original file line number Diff line number Diff line change @@ -104,10 +104,6 @@ recursive=no
104104# source root.
105105source-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.
113109unsafe-load-any-extension =no
Original file line number Diff line number Diff line change 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
55requests == 2.32.5
66black == 25.11.0
77PyYAML == 6.0.3
You can’t perform that action at this time.
0 commit comments