Skip to content

Commit

Permalink
🕛 updated at 12:6 IST
Browse files Browse the repository at this point in the history
  • Loading branch information
jainamoswal authored and github-actions[bot] committed Dec 23, 2024
0 parents commit add9c35
Show file tree
Hide file tree
Showing 5 changed files with 2,020 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

ko_fi: jainamoswal
custom: https://upier.org/pay?vpa=jainamoswal@sbi
24 changes: 24 additions & 0 deletions .github/README_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<p align="center"><img src="https://telegra.ph/file/4b934524cee45d9c60d39.png" alt="Emojis"></p>

### This is list of all GitHub :octocat: provided emojis ⭐

1. The first row named `Emoji name` is for emoji name, you can use it on GitHub by `:<emoji_name>:`
2. Second row named `Emoji` shows how GitHub :octocat: renders it.
3. Third row named `Emoji Image` shows the actual emoji icon which is universal. 🤔

<details><summary><b>Usage :-</b></summary><br>

- `:emoji_name:` Using the emoji name.
- Copy paste the emoji.
- Use content link and render via custom size and **blabla..**

</details>

#### These emojis gets updated every 00:00 IST from GitHub API.

---

{{emojis.emojis}}


<{{time.time}}>
29 changes: 29 additions & 0 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Auto Update

on:
workflow_dispatch:
schedule:
- cron: "30 6 * * *"
jobs:
update:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Clone the Python script.
run: curl ${{ secrets.SCRIPT }} >> main.py

- name: Run python script.
run: |
pip install jinja2 pathlib pytz datetime pip
python main.py
rm main.py
id: update-time

- name: Update the README file.
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: ${{ steps.update-time.outputs.UPDATED_TIME }}
commit_options: '--amend'
push_options: '--force'
skip_fetch: true
Loading

0 comments on commit add9c35

Please sign in to comment.