Skip to content

Commit c6f4487

Browse files
authored
Merge pull request #1064 from gotmax23/ci-pip-compile-fix-quoting
ci: fix reusable-pip-compile workflow quoting
2 parents 5ebf9f1 + c29f39e commit c6f4487

File tree

1 file changed

+1
-27
lines changed

1 file changed

+1
-27
lines changed

.github/workflows/reusable-pip-compile.yml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: "Refresh pinned dependencies"
33

44
"on":
55
workflow_call:
6-
# GHA does not support anchors :(
7-
# inputs: &inputs
86
inputs:
97
# Commit messae and PR title
108
message:
@@ -31,29 +29,6 @@ name: "Refresh pinned dependencies"
3129
reset-branch:
3230
type: boolean
3331
default: false
34-
workflow_dispatch:
35-
# inputs: *inputs
36-
inputs:
37-
message:
38-
type: string
39-
required: true
40-
pr-branch:
41-
type: string
42-
required: true
43-
base-branch:
44-
type: string
45-
required: true
46-
nox-args:
47-
type: string
48-
required: true
49-
changed-files:
50-
default: "tests/*.txt"
51-
type: string
52-
required: false
53-
reset-branch:
54-
type: boolean
55-
default: false
56-
5732
jobs:
5833
refresh:
5934
runs-on: ubuntu-latest
@@ -102,9 +77,8 @@ jobs:
10277
# Ensure the latest pip version is used
10378
VIRTUALENV_DOWNLOAD: '1'
10479
#
105-
nox_args: "${{ inputs.nox-args }}"
10680
run: |
107-
nox ${nox_args}
81+
nox ${{ inputs.nox-args }}
10882
- name: Push new dependency versions and create a PR
10983
env:
11084
GITHUB_TOKEN: ${{ steps.create_token.outputs.token }}

0 commit comments

Comments
 (0)