Skip to content

Commit 6e639f9

Browse files
committed
feat: get latest blogs & rename dirs
1 parent 0a04083 commit 6e639f9

File tree

14 files changed

+288
-35
lines changed

14 files changed

+288
-35
lines changed

.github/workflows/blog-posts.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Blog Posts
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '30 0 * * *' # This runs at 6 AM IST
7+
8+
9+
jobs:
10+
update-posts:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Update post list
15+
run: |
16+
cd scripts && npm install && npm run get:posts
17+
- name: Commit changes
18+
run: |
19+
git config --local user.email "github-actions[bot]@users.noreply.github.com"
20+
git config --local user.name "github-actions[bot]"
21+
git add -A
22+
git diff-index --quiet HEAD || git commit -m "Update blog posts"
23+
- name: Pull changes
24+
run: git pull -r
25+
- name: Push changes
26+
uses: ad-m/github-push-action@d91a481090679876dfc4178fef17f286781251df
27+
with:
28+
github_token: ${{ secrets.ACCESS_TOKEN }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode/
2+
.env
3+
node_modules

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
My name is Pulkit. I'm a senior undergraduate from 🇮🇳
2+
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://github-readme-streak-stats.herokuapp.com/?user=pulkitxm&theme=dark&hide_border=true">
5+
<img align="right" width="50%" src="https://github-readme-streak-stats.herokuapp.com/?user=pulkitxm&theme=dark&hide_border=true">
6+
</picture>
7+
8+
- :pencil2: JavaScript / TypeScript / Python
9+
- :package: [Ubuntu](https://ubuntu.com/) / [vscode](https://code.visualstudio.com) / [edge](https://www.microsoft.com/en-us/edge)
10+
- :seedling: Exploring new opportunities in tech!
11+
- :thought_balloon: Ask me anything at [Discussions](https://github.com/pulkitxm/pulkitxm/discussions/new/choose)!
12+
- :star: [Projects starred by me](AWESOME-STARS.md)
13+
- :pushpin: Most active on [PulkitXm](https://github.com/pulkitxm)
14+
- :computer: Tech enthusiast & full-stack developer
15+
16+
---
17+
18+
### :pencil: [Latest blog posts](https://blogs.devpulkit.in)
19+
20+
<!--START_SECTION:blog-posts-->
21+
22+
<!--END_SECTION:blog-posts-->
23+
24+
---
25+
26+
### :sparkles: [My followers](https://github.com/Pulkitxm?tab=followers)
27+
28+
<!--START_SECTION:top-followers-->
29+
30+
<!--END_SECTION:top-followers-->
31+
32+
---
33+
34+
### :bar_chart: [Coding time in the last month](https://wakatime.com/@pulkitxm)
35+
36+
<!--START_SECTION:waka-->
37+
38+
<!--END_SECTION:waka-->
File renamed without changes.
File renamed without changes.

images/banner.gif

-608 KB
Binary file not shown.

images/github-contribution-snake.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

images/programmer.gif

-1.23 MB
Binary file not shown.

images/wave.gif

-1.38 MB
Binary file not shown.

index.html

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)