action: fix inputs for workflows#8
Merged
barrettj12 merged 1 commit intocanonical:mainfrom May 12, 2023
Merged
Conversation
Signed-off-by: Callahan Kovacs <[email protected]>
Contributor
|
Yikes, that's embarrassing. Good catch and thanks for fixing. |
barrettj12
added a commit
to barrettj12/actions
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/netplan
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/netplan
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/grafana-agent
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/cleantest
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
2 tasks
barrettj12
added a commit
to barrettj12/observability
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/lego-rock
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
barrettj12
added a commit
to barrettj12/operator-libs-linux
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
sed-i
pushed a commit
to canonical/observability
that referenced
this pull request
May 12, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
benhoyt
added a commit
to canonical/operator-libs-linux
that referenced
this pull request
May 12, 2023
* update canonical/setup-lxd to v0.1.1 There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8 * Try using 5.0/stable as 5.9/stable doesn't exist --------- Co-authored-by: Ben Hoyt <[email protected]>
slyon
pushed a commit
to canonical/netplan
that referenced
this pull request
May 15, 2023
* CI: update canonical/setup-lxd to v0.1.1 There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8 * CI: update canonical/setup-lxd to v0.1.1 There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
daniloegea
pushed a commit
to canonical/netplan
that referenced
this pull request
May 17, 2023
* CI: update canonical/setup-lxd to v0.1.1 There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8 * CI: update canonical/setup-lxd to v0.1.1 There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
Saviq
pushed a commit
to canonical/actions
that referenced
this pull request
Sep 11, 2023
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
Oleksii1001
pushed a commit
to Oleksii1001/Cleantest
that referenced
this pull request
Oct 23, 2025
There is a bug in canonical/[email protected] where the `channel` input is ignored. This has been fixed in v0.1.1. See canonical/setup-lxd#8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
The
channelkeyword is ignored.Reproducer
Using the following action ignores the
channelkeyword:I also reproduced this by forking this repo and letting the default workflow run.
Details
This test passes, but it is a false positive.
ubuntu-latestis 22.04 and is preloaded with 5.0/stable. The test useswith: channel: 5.0/stable, so it doesn't verify if thechannelkeyword was used. I changed the test to use4.0/stable, which is no longer the default onubuntu-latest.The root cause is that
inputsis the correct context, notgithub.events.inputs(which only works on manually-triggered workflows).