mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-04 10:50:57 +01:00
chore(lune): remove GitHub auth token present in code
Whoopsie... FYI it has been revoked now :3
This commit is contained in:
parent
19699be874
commit
3c49386747
1 changed files with 1 additions and 7 deletions
|
@ -67,13 +67,7 @@ for _, binSrc in pathfs.readDir(BINS_SRC_DIR) do
|
|||
-- Make sure we have a repo name and version
|
||||
assert(repoName and version, `Failed to get repo name and entrypoint for tool {binSrc}`)
|
||||
|
||||
local gh = Github.new(
|
||||
repoName :: string,
|
||||
Option.Some({
|
||||
authToken = Option.Some("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"),
|
||||
retries = Option.None,
|
||||
} :: Github.Config) :: Option<Github.Config>
|
||||
)
|
||||
local gh = Github.new(repoName :: string, Option.None :: Option<Github.Config>)
|
||||
local transactions = gh:queueTransactions({ "FetchReleases" })
|
||||
|
||||
-- Fetch releases, and order them by published date
|
||||
|
|
Loading…
Add table
Reference in a new issue