mirror of
https://github.com/actions/labeler.git
synced 2025-12-12 04:27:34 +00:00
11 lines
347 B
TypeScript
11 lines
347 B
TypeScript
import * as core from '@actions/core';
|
|
import {getPrNumbers} from './get-pr-numbers';
|
|
|
|
export const getInputs = () => ({
|
|
token: core.getInput('repo-token'),
|
|
configPath: core.getInput('configuration-path', {required: true}),
|
|
syncLabels: core.getBooleanInput('sync-labels'),
|
|
dot: core.getBooleanInput('dot'),
|
|
prNumbers: getPrNumbers()
|
|
});
|