narrow-jackal-57645
08/21/2020, 7:51 AMimport * as github from "@pulumi/github";
new github.Repository("my_repo", {
name: "my_repo",
topics: ["typescript"]
})
Creation works perfectly.
then I updated the topics
value to ["javascript"]
and apply, however I got following error:
github:index:Repository (my_repo):
error: 1 error occurred:
* updating urn:pulumi:my_company::github-infrastructure::github:index/repository:Repository::my_repo: PATCH <https://api.github.com/repos/my_company/my_repo>: 404 Not Found []
Wondering if it is a bug or I have missed something important. Many thanks in advance