Skip to content

Commit 6816c07

Browse files
committed
Fix bump action
1 parent 285da81 commit 6816c07

3 files changed

Lines changed: 119 additions & 109 deletions

File tree

.github/workflows/bump_cache.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,13 @@ jobs:
4141
} >> "$GITHUB_OUTPUT"
4242
4343
- name: Open Issue If Bumped
44-
if: ${{ steps.bump.outputs.RES != ''}}
44+
if: ${{ steps.bump.outputs.RES != '' }}
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
DIFF: ${{ steps.bump.outputs.RES }}
4748
run: |
4849
today=$(date +"%Y-%m-%d")
50+
body=$(printf '```diff\n%s\n```\n' "$DIFF")
4951
gh issue create \
5052
--title "($today) Release Cycle Cache Outdated" \
51-
--body '\`\`\`diff\n${{ steps.report.outputs.RES }}\n\`\`\`'
53+
--body "$body"

pre_commit_python_eol/cached_release_cycle.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
{
2-
"3.15": {
2+
"3.16": {
33
"branch": "main",
4-
"pep": 790,
4+
"pep": 826,
55
"status": "feature",
6+
"first_release": "2027-10-06",
7+
"end_of_life": "2032-10",
8+
"release_manager": "Savannah Ostrowski"
9+
},
10+
"3.15": {
11+
"branch": "3.15",
12+
"pep": 790,
13+
"status": "prerelease",
614
"first_release": "2026-10-01",
715
"end_of_life": "2031-10",
816
"release_manager": "Hugo van Kemenade"

0 commit comments

Comments
 (0)