1 parent 21fb459 commit 49a77d4Copy full SHA for 49a77d4
1 file changed
.github/workflows/sync-with-cpython.yml
@@ -8,7 +8,7 @@ on:
8
cpython_tag:
9
description: 'CPython tag to sync against (e.g. v3.14)'
10
required: false
11
- default: 'v3.14'
+ default: '3.14'
12
13
permissions:
14
contents: write
@@ -22,7 +22,7 @@ jobs:
22
sync:
23
runs-on: ubuntu-latest
24
env:
25
- CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14' }}
+ CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || '3.14' }}
26
steps:
27
- name: Checkout translation repo
28
uses: actions/checkout@v4
@@ -117,4 +117,4 @@ jobs:
117
exit 0
118
fi
119
git commit -m "chore: sync msgids with CPython $CPYTHON_TAG"
120
- git push
+ git push
0 commit comments