-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit add9c35
Showing
5 changed files
with
2,020 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.