<@UHTP242EB>, you seem to be the most active one o...
# general
w
@broad-dog-22463, you seem to be the most active one on the pulumi-provider. Have you experienced anything like this before: https://github.com/pulumi/pulumi-github/issues/111
b
That's weird. It says it's been replaced in the stack but it's gone in github
w
Have you reproduced it @brave-planet-10645 ?
I didn’t try it on a smaller example, but I think it should be reproducible.
b
Yes
Copy code
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
import * as random from "@pulumi/random";

const org = github.getOrganization({
    name: "karsenbarg"
});

const secret = new random.RandomString("secret", {
    length:  15
});

const orgSecret = new github.ActionsOrganizationSecret("orgSecret", {
    plaintextValue: secret.result,
    secretName: "mysecret",
    visibility: "all"
});
and then changed the length of the secret
👍 1
w
Do you need anything more input from me @brave-planet-10645, or will you update the ticket?
b
I'll update the ticket shortly
👍 1