We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8476fe3 + 48b9388 commit 55b4a10Copy full SHA for 55b4a10
.github/renovate.json
@@ -3,5 +3,13 @@
3
"config:base",
4
":semanticCommitTypeAll(chore)"
5
],
6
- "rangeStrategy": "widen"
+ "rangeStrategy": "widen",
7
+ "regexManagers": [
8
+ {
9
+ "fileMatch": ["release.*.yml"],
10
+ "matchStrings": ["knope.*\\s*with:\\s*version:\\s*(?<currentValue>.*?)$"],
11
+ "depNameTemplate": "knope",
12
+ "datasourceTemplate": "crate"
13
+ }
14
+ ]
15
}
.github/workflows/release.yml
@@ -2,6 +2,9 @@ name: Release
2
on: workflow_dispatch
+permissions:
+ contents: write
+
jobs:
release:
runs-on: ubuntu-latest
@@ -24,7 +27,7 @@ jobs:
24
27
- name: Bump Version & Create GitHub Release
25
28
run: knope release
26
29
env:
- GITHUB_TOKEN: ${{ secrets.PAT }}
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
- name: Install Poetry
32
run: pip install --upgrade poetry
33
- name: Push to PyPI
0 commit comments