We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d960a commit b113215Copy full SHA for b113215
1 file changed
src/github.js
@@ -7,9 +7,9 @@ const getRepos = async () => {
7
const repositoryType = core.getInput('repository_type') || 'all'
8
const repositoryFilter = core.getInput('repository_filter') || '.*'
9
const owner = core.getInput('github_owner')
10
- const catalogFile = core.getInput('catalog_file') || 'catalog-info.yaml'
11
- const octokit = new Octokit({ auth: GITHUB_TOKEN })
+ const catalogFile = core.getInput('catalog_file') || 'catalog-info.yaml'
12
const repositoryFilterRegex = new RegExp(repositoryFilter)
+ const octokit = new Octokit({ auth: GITHUB_TOKEN })
13
14
const parseServiceDefinition = async (repo, path, pushMissing) => {
15
const repoData = []
0 commit comments