mirror of
https://github.com/jlengrand/github-repository-stats-action.git
synced 2026-03-10 08:21:21 +00:00
16 lines
498 B
YAML
16 lines
498 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' # TODO: Change!
|
|
outputs:
|
|
payload:
|
|
description: 'The payload we sent to the server'
|
|
runs:
|
|
using: 'node16'
|
|
main: 'dist/index.js'
|