IssueLabel

class IssueLabel : KotlinCustomResource

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.github.IssueLabel;
import com.pulumi.github.IssueLabelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testRepo = new IssueLabel("testRepo", IssueLabelArgs.builder()
.color("FF0000")
.repository("test-repo")
.build());
}
}

Import

GitHub Issue Labels can be imported using an ID made up of repository:name, e.g.

$ pulumi import github:index/issueLabel:IssueLabel panic_label terraform:panic

Properties

Link copied to clipboard
val color: Output<String>

A 6 character hex code, without the leading #, identifying the color of the label.

Link copied to clipboard
val description: Output<String>?

A short description of the label.

Link copied to clipboard
val etag: Output<String>
Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the label.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val repository: Output<String>

The GitHub repository

Link copied to clipboard
val url: Output<String>

The URL to the issue label

Link copied to clipboard
val urn: Output<String>