-
Notifications
You must be signed in to change notification settings - Fork 3
use semver; simple perl-versions workflow #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: List perl versions | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
since-perl: | ||
description: "List Perl versions since given version (including)." | ||
type: string | ||
required: true | ||
default: "5.10" | ||
outputs: | ||
perl-versions: | ||
value: ${{ jobs.perl-versions.outputs.perl-versions }} | ||
|
||
jobs: | ||
perl-versions: | ||
runs-on: ubuntu-latest | ||
name: List perl versions | ||
outputs: | ||
perl-versions: ${{ steps.action.outputs.perl-versions }} | ||
steps: | ||
- name: Perl versions action step | ||
id: action | ||
uses: perl-actions/perl-versions@main | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is using There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, we don't have tags yet |
||
with: | ||
since-perl: ${{ inputs.since-perl }} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we consider running that workflow on PR for sanity check?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm thinking about that so far no idea (but I'm sure I will come with some)
so far I have (private) repo where I call workflows with manual dispatch.