emoja 0.1.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/data-fetch.yml +36 -0
- data/lib/data/emoji_ja.json +7643 -604
- data/lib/emoja/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 642ac8ed5c2013e18da6e2cb05a8ab9e1a4655d73c14c382ef1f4a7c672d8f24
|
|
4
|
+
data.tar.gz: 2a8529b97dbbed69d18fba0960c41db11a12db1f09d64023d40530fb9d8fdfa9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9f8de9c78b848c490498dc4f52ef478b891ad218ce1b0da166d28e6284e8d798116e131114607f5229539e8bffcc4724baa795b643d36102fb0e0147865a4afc
|
|
7
|
+
data.tar.gz: e1b221ae6d60c23895d2c90caed131659f5dc16e2ac67dcd419c356393e953e03bcdba87be5150c1ff8255d1d43e108b1f8a552761cf284e0df3980d8321715c
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: Fetch data
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: "0 0 1 * *"
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: write
|
|
10
|
+
pull-requests: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
fetch:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
|
+
|
|
18
|
+
- name: Set up Ruby
|
|
19
|
+
uses: ruby/setup-ruby@v1
|
|
20
|
+
with:
|
|
21
|
+
ruby-version: ruby
|
|
22
|
+
bundler-cache: true
|
|
23
|
+
|
|
24
|
+
- name: Fetch emoji dictionaries
|
|
25
|
+
run: bundle exec rake data:fetch
|
|
26
|
+
|
|
27
|
+
- name: Create pull request
|
|
28
|
+
uses: peter-evans/create-pull-request@v8
|
|
29
|
+
with:
|
|
30
|
+
branch: automated/data-fetch
|
|
31
|
+
commit-message: "Update emoji dictionaries"
|
|
32
|
+
title: "Update emoji dictionaries"
|
|
33
|
+
body: |
|
|
34
|
+
Automated update from `yagays/emoji-ja` via `rake data:fetch`.
|
|
35
|
+
add-paths: lib/data
|
|
36
|
+
delete-branch: true
|