Skip to content

Files

Latest commit

 

History

History
159 lines (147 loc) · 4.58 KB

README.md

File metadata and controls

159 lines (147 loc) · 4.58 KB

🌸 Anilist watch list and reading list"

The anilist plugin lets you display your favorites animes, mangas and characters from your AniList account.

For anime watchers
For manga readers
Favorites characters

This plugin is composed of the following sections, which can be displayed or hidden through plugin_anilist_sections option:

  • favorites will display your favorites mangas and animes
  • watching will display animes currently in your watching list
  • reading will display manga currently in your reading list
  • characters will display characters you liked

These sections can also be filtered by media type, which can be either anime, manga or both.

➡️ Available options

TypeDescription
plugin_anilist

Display data from your AniList account

type: boolean
default: no
plugin_anilist_medias

Medias types to display

type: array (comma-separated)
default: anime, manga
allowed values:
  • anime
  • manga
plugin_anilist_sections

Sections to display

type: array (comma-separated)
default: favorites
allowed values:
  • favorites
  • watching
  • reading
  • characters
plugin_anilist_limit

Maximum number of entries to display per section

type: number (0 ≤ 𝑥)
default: 2
plugin_anilist_limit_characters

Maximum number of entries to display in characters section

type: number (0 ≤ 𝑥)
default: 22
plugin_anilist_shuffle

Shuffle AniList data

type: boolean
default: yes
plugin_anilist_user

AniList login

type: string
default: → User login

→ Full specification

ℹ️ Examples workflows

name: Favorites anime and currently watching
uses: lowlighter/metrics@latest
with:
  filename: metrics.plugin.anilist.svg
  token: NOT_NEEDED
  base: ''
  plugin_anilist: 'yes'
  plugin_anilist_medias: anime
  plugin_anilist_sections: favorites, watching
  plugin_anilist_limit: 1
name: Favorites manga and currently reading
uses: lowlighter/metrics@latest
with:
  filename: metrics.plugin.anilist.manga.svg
  token: NOT_NEEDED
  base: ''
  plugin_anilist: 'yes'
  plugin_anilist_medias: manga
  plugin_anilist_sections: favorites, reading
  plugin_anilist_limit: 1
name: Favorites characters
uses: lowlighter/metrics@latest
with:
  filename: metrics.plugin.anilist.characters.svg
  token: NOT_NEEDED
  base: ''
  plugin_anilist: 'yes'
  plugin_anilist_sections: characters
  plugin_anilist_limit_characters: 22