53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
- name: Language plugin (default)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
|
|
- name: Language plugin (ignored languages)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_ignored: html, css, dockerfile
|
|
|
|
|
|
- name: Language plugin (skipped repositories)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_skipped: metrics
|
|
|
|
- name: Language plugin (custom color set)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_colors: complementary
|
|
|
|
- name: Language plugin (with details)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_details: percentage
|
|
|
|
- name: Language plugin (with threshold)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_threshold: 2%
|
|
|
|
- name: Language plugin (complete)
|
|
uses: lowlighter/metrics@latest
|
|
with:
|
|
token: MOCKED_TOKEN
|
|
plugin_languages: yes
|
|
plugin_languages_ignored: html, css, dockerfile
|
|
plugin_languages_skipped: metrics
|
|
plugin_languages_colors: rainbow
|
|
plugin_languages_details: bytes-size, percentage
|
|
plugin_languages_threshold: 2%
|