Skip to content

Commit b113215

Browse files
committed
Fix action.yml
1 parent 08d960a commit b113215

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/github.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ const getRepos = async () => {
77
const repositoryType = core.getInput('repository_type') || 'all'
88
const repositoryFilter = core.getInput('repository_filter') || '.*'
99
const owner = core.getInput('github_owner')
10-
const catalogFile = core.getInput('catalog_file') || 'catalog-info.yaml'
11-
const octokit = new Octokit({ auth: GITHUB_TOKEN })
10+
const catalogFile = core.getInput('catalog_file') || 'catalog-info.yaml'
1211
const repositoryFilterRegex = new RegExp(repositoryFilter)
12+
const octokit = new Octokit({ auth: GITHUB_TOKEN })
1313

1414
const parseServiceDefinition = async (repo, path, pushMissing) => {
1515
const repoData = []

0 commit comments

Comments
 (0)