68 lines
1.6 KiB
YAML
68 lines
1.6 KiB
YAML
name: "♐ Code snippet of the day"
|
|
category: github
|
|
description: |
|
|
This plugin displays a random code snippet from your recent activity history.
|
|
|
|
> ⚠️ When improperly configured, this plugin could display private code.
|
|
> If you work with sensitive data or company code, it is advised to keep this plugin disabled.
|
|
> Use at your own risk, *metrics* and its authors cannot be held responsible for any resulting code leaks.
|
|
examples:
|
|
default: https://github.com/lowlighter/metrics/blob/examples/metrics.plugin.code.svg
|
|
index: 12
|
|
supports:
|
|
- user
|
|
- organization
|
|
scopes:
|
|
- public_access
|
|
inputs:
|
|
|
|
plugin_code:
|
|
description: Enable code plugin
|
|
type: boolean
|
|
default: no
|
|
|
|
plugin_code_lines:
|
|
description: Display limit for code snippets
|
|
type: number
|
|
default: 12
|
|
|
|
plugin_code_load:
|
|
description: Events to load
|
|
type: number
|
|
default: 100
|
|
min: 100
|
|
max: 1000
|
|
|
|
plugin_code_days:
|
|
description: Events maximum age
|
|
type: number
|
|
default: 3
|
|
min: 0
|
|
max: 365
|
|
zero: disable
|
|
|
|
plugin_code_visibility:
|
|
description: |
|
|
Events visibility
|
|
|
|
Lets you hide private activity when using a `repo` scope token
|
|
type: string
|
|
default: public
|
|
values:
|
|
- public
|
|
- all
|
|
|
|
plugin_code_skipped:
|
|
description: Skipped repositories
|
|
type: array
|
|
format: comma-separated
|
|
default: ""
|
|
example: my-repo-1, my-repo-2, owner/repo-3, ...
|
|
inherits: repositories_skipped
|
|
|
|
plugin_code_languages:
|
|
description: Restrict display to specific languages
|
|
type: array
|
|
format: comma-separated
|
|
default: ""
|
|
example: javascript, typescript, ... |