mirror of
https://github.com/astral-sh/ruff-action.git
synced 2026-08-08 02:07:02 +00:00
10 lines
400 B
TypeScript
10 lines
400 B
TypeScript
import * as core from "@actions/core";
|
|
|
|
export const version = core.getInput("version");
|
|
export const checkSum = core.getInput("checksum");
|
|
export const githubToken = core.getInput("github-token");
|
|
export const args = core.getInput("args");
|
|
export const src = core.getInput("src");
|
|
export const versionFile = core.getInput("version-file");
|
|
export const manifestFile = core.getInput("manifest-file");
|