feat: removes github-token need

This commit is contained in:
GitHub Actions
2022-05-11 16:22:16 +02:00
parent 90a2e06350
commit 0dc2a51ddf
3 changed files with 8 additions and 12 deletions

View File

@@ -15,7 +15,7 @@ type File = {
class Git {
constructor() {
const githubToken = core.getInput('github-token', { required: true });
const githubToken = core.getInput('api-token', { required: true });
core.setSecret(githubToken);
const githubName = core.getInput('github-name') || 'GitHub Actions';