Skip to content

Commit

Permalink
Updated entries 2025 week 10
Browse files Browse the repository at this point in the history
  • Loading branch information
manami-project committed Mar 3, 2025
1 parent 6957d91 commit dfde3f8
Show file tree
Hide file tree
Showing 17 changed files with 71,705 additions and 38,529 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/close-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: Close Pull Request

on:
pull_request_target:
types: [opened, synchronize, reopened, edited]
types:
- opened
- synchronize
- reopened
- edited

jobs:
run:
Expand Down
43 changes: 43 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Release

on:
push:
branches:
- master
paths:
- "**/*.json"
- "**/*.zip"

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Check commit message
id: check_message
run: |
year=$(date +'%Y')
echo "year=$year" >> $GITHUB_OUTPUT
week=$(date +'%V')
echo "week=$week" >> $GITHUB_OUTPUT
commit_message="${{ github.event.head_commit.message }}"
if echo "$commit_message" | grep -qE "^Updated entries [0-9]+ week [0-9]+$"; then
echo "match=true" >> $GITHUB_OUTPUT
else
echo "match=false" >> $GITHUB_OUTPUT
fi
- name: Create release
uses: softprops/action-gh-release@v2
if: steps.check_message.outputs.match == 'true'
with:
name: ${{ steps.check_message.outputs.year }}-${{ steps.check_message.outputs.week }}
tag_name: ${{ steps.check_message.outputs.year }}-${{ steps.check_message.outputs.week }}
generate_release_notes: true
make_latest: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
!.github/workflows/housekeeping.yml
!.github/workflows/json_lint.yml
!.github/workflows/close-pr.yml
!.github/workflows/release.yml

!.github/ISSUE_TEMPLATE/
.github/ISSUE_TEMPLATE/*
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@
The purpose of this repository is to create a dataset containing anime meta data aggregated by different anime meta data providers (such as myanimelist.net, anidb.net, kitsu.app and more) and allow cross references between those meta data providers. This dataset is supposed to be used by and created for [manami](https://github.com/manami-project/manami).

## Statistics
Update **week 09 [2025]**
Update **week 10 [2025]**

The dataset consists of **36189** entries _(61% reviewed)_ composed of:
The dataset consists of **36268** entries _(60% reviewed)_ composed of:

| Number of entries | Meta data provider |
|-------------------|--------------------|
| 28552 | [myanimelist.net](https://myanimelist.net) |
| 24633 | [anime-planet.com](https://anime-planet.com) |
| 21031 | [kitsu.app](https://kitsu.app) |
| 19550 | [anisearch.com](https://anisearch.com) |
| 19366 | [anilist.co](https://anilist.co) |
| 16737 | [notify.moe](https://notify.moe) |
| 13738 | [simkl.com](https://simkl.com) |
| 13738 | [animecountdown.com](https://animecountdown.com) |
| 13735 | [anidb.net](https://anidb.net) |
| 11644 | [livechart.me](https://livechart.me) |
| 28594 | [myanimelist.net](https://myanimelist.net) |
| 24653 | [anime-planet.com](https://anime-planet.com) |
| 21046 | [kitsu.app](https://kitsu.app) |
| 19594 | [anisearch.com](https://anisearch.com) |
| 19393 | [anilist.co](https://anilist.co) |
| 16739 | [notify.moe](https://notify.moe) |
| 13746 | [simkl.com](https://simkl.com) |
| 13746 | [animecountdown.com](https://animecountdown.com) |
| 13742 | [anidb.net](https://anidb.net) |
| 11657 | [livechart.me](https://livechart.me) |


## Files
Expand Down
Loading

0 comments on commit dfde3f8

Please sign in to comment.