gamer025/CodeOwnersNotifer

Github action for notifying codeowners about changes, even if they aren't part of the repo.

View on GitHub

Trust Signals

Scorecard Score
not yet scored
Maintenance Recency
Stale
License
None
namedescriptionrequireddefault
ownerThe owner, for example: "dotnet". Assign from `github.repository_owner`.no${{ github.repository_owner }}
nameThe repository name, for example: "samples". Assign from `github.repository`.no${{ github.repository }}
timeoutTimeout for Github API requests in milliseconds.no10000
fileLimitMaximum amount of files to process, PRs with more files will not be processed.no1000
tokenGithub token used for Github API. Only needed to increase rate limit, may not be provided.no${{ github.token }}
workspaceThe workspace directory, or repository root directory. Assign from `github.workspace`.no/github/workspace
filePath to the codeowners file. Relative to the repository root.no/.github/CODEOWNERS
pullIDID of the PR to process. Assign from `github.event.pull_request.number`.no${{ github.event.pull_request.number }}
separatorSeparator used if multiple owners are returned. Defaults to space.no""
prefixPrefix that will be added to owners-formatted output + used for finding existing mentions.no""
sufixSufix that will be added to owners-formatted output + used for finding existing mentions.no""
botnameName of the bot/user that posts notification comments. If this is specified only owners that haven't been mentioned by this user will be output. Should be 'github-actions[bot]'no
namedescription
ownersRaw list of owners, seperated with the separator parameter. Use this to determine if owners were found and as input for other actions.
owners-formattedOwners with sufix and prefix paramter added. Use this output as input for comment posting actions.