*Q*: I have a following GitHub resource: ```impor...
# general
n
Q: I have a following GitHub resource:
Copy code
import * 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:
Copy code
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