We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4c8ad commit 889bfddCopy full SHA for 889bfdd
.github/workflows/perl-versions.yml
@@ -8,6 +8,15 @@ on:
8
type: string
9
required: true
10
default: "5.10"
11
+ until-perl:
12
+ description: "List all Perl versions up to this (including this). Example: 5.30"
13
+ type: string
14
+ required: false
15
+ with-devel:
16
+ description: "Whether to include also 'devel' Perl"
17
+ type: boolean
18
19
+ default: false
20
outputs:
21
perl-versions:
22
value: ${{ jobs.perl-versions.outputs.perl-versions }}
@@ -24,4 +33,6 @@ jobs:
24
33
uses: perl-actions/perl-versions@main
25
34
with:
26
35
since-perl: ${{ inputs.since-perl }}
36
+ until-perl: ${{ inputs.until-perl || null }}
37
+ with-devel: ${{ inputs.with-devel || null }}
27
38
0 commit comments