我需要访问Github GraphQL API,以便每N小时永久发出以下请求:
query($ids: [ID!]!) {
rateLimit {
cost
remaining
resetAt
}
nodes(ids: $ids) {
... on Repository {
milestones(last: 100) {
nodes {
issues(last: 100) {
nodes {
closedAt
closed
}
}
state
dueOn
}
}
}
}
}
答案 0 :(得分:1)
可能您将令牌提交到GitHub存储库。如果是这种情况,Github将立即删除令牌。因此您需要将令牌设置为系统中的可变环境。