94853340b9
Close #149 * chore: fix path to .gitconfig
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import * as core from '@actions/core';
|
|
import * as main from './main';
|
|
|
|
try {
|
|
main.run();
|
|
} catch (e) {
|
|
core.setFailed(`Action failed with error ${e}`);
|
|
}
|