mirror of
https://github.com/jlengrand/github-repository-stats-action.git
synced 2026-03-10 08:21:21 +00:00
20 lines
718 B
YAML
20 lines
718 B
YAML
name: 'GitHub repository statistics'
|
|
description: 'Gets statistics about a GitHub repository'
|
|
inputs:
|
|
access-token:
|
|
description: 'Personal access token to use to access the GitHub API'
|
|
required: true
|
|
server-url:
|
|
description: 'URL of the server to send statistics to. Used only for testing purposes'
|
|
default: 'https://www.repoinsights.com'
|
|
repository:
|
|
description: "Repository to get statistics from (Ex: jlengrand/github-repository-stats-action). \n
|
|
Should be in the OWNER/REPOSITORY format \n
|
|
Defaults to the current repository the action is running on."
|
|
outputs:
|
|
payload:
|
|
description: 'The payload we sent to the server'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|