Skip to content
Discussion options

You must be logged in to vote

Hi !

Thanks a lot for your feedback 👍

You should be able to achieve something similar to what you said by using multiple jobs rather than a single one, and using a different filename so they don't conflict together:

# workflow.yml
- uses: lowlighter/metrics@latest
  with:
    filename: base.svg

- uses: lowlighter/metrics@latest
  with:
    base: ''
    plugin_notable: yes
    filename: notable.svg

And use something like this in your markdown:

<!-- README.md -->
<details>
  <summary>Base information</summary>
  <img src="/base.svg">
</details>

<details>
  <summary>Notable contributions</summary>
  <img src="/notable.svg">
</details>

Since creating additional jobs may pollute commit histo…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jopemachine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment