43 lines
1020 B
YAML
43 lines
1020 B
YAML
- name: Organization
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: metrics.organization.svg
|
|
user: github
|
|
token: ${{ secrets.METRICS_TOKEN_WITH_SCOPES }}
|
|
base: header, repositories
|
|
|
|
- name: Large display
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: metrics.large.svg
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
config_display: large
|
|
|
|
- name: JSON metrics
|
|
if: ${{ success() || failure() }}
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: metrics.example.json
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
config_output: json
|
|
|
|
- name: PNG metrics
|
|
if: ${{ success() || failure() }}
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: metrics.example.png
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
config_output: png
|
|
|
|
- name: Plugin error example
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
filename: metrics.plugin.error.svg
|
|
token: ${{ secrets.METRICS_TOKEN }}
|
|
base: ""
|
|
plugin_projects: yes
|
|
prod:
|
|
with:
|
|
plugins_errors_fatal: no
|
|
test:
|
|
skip: true |