Files
github-repository-stats-action/action.yml
julien Lengrand-Lambert 4edcfdabc7 Feat/grabbing repo stats (#1)
* First version of working action, sending data to server.
* Adds daily cron job
2023-06-29 13:27:09 +02:00

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'