mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-07 20:51:11 +00:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
![]() |
export async function auth(token) {
|
||
|
const tokenType = token.split(/\./).length === 3
|
||
|
? "app"
|
||
|
: /^v\d+\./.test(token)
|
||
|
? "installation"
|
||
|
: "oauth";
|
||
|
return {
|
||
|
type: "token",
|
||
|
token: token,
|
||
|
tokenType
|
||
|
};
|
||
|
}
|