We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 038386f commit d9bb727Copy full SHA for d9bb727
1 file changed
.github/workflows/build.yaml
@@ -1,4 +1,4 @@
1
-run-name: build ${{ github.event.inputs.reference }}
+run-name: build ${{ github.event.inputs.reference }}:${{ github.event.inputs.reference }}
2
on:
3
workflow_dispatch:
4
inputs:
@@ -10,6 +10,10 @@ on:
10
description: 'Dist version (compatible with patchlevel.py output)'
11
required: true
12
default: '3.14'
13
+ repository:
14
+ description: 'Repository to checkout'
15
+ required: true
16
+ default: 'python/cpython'
17
permissions:
18
contents: write
19
jobs:
@@ -21,7 +25,7 @@ jobs:
21
25
python-version: 3
22
26
- uses: actions/checkout@master
23
27
with:
24
- repository: m-aciek/cpython
28
+ repository: ${{ github.event.inputs.repository }}
29
ref: ${{ github.event.inputs.reference }}
30
- run: make venv
31
working-directory: ./Doc
0 commit comments