Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0014625
feat: sort automation
kkrishguptaa Oct 18, 2021
7abb624
feat(sort): github action
kkrishguptaa Oct 18, 2021
f3b1293
style(data): sort alphabetically
Oct 18, 2021
c115378
chore(data): format file
kkrishguptaa Oct 18, 2021
d5a89f2
style(data): sort alphabetically
Oct 18, 2021
3ff0597
fix: prettify code
kkrishguptaa Oct 18, 2021
549b703
feat: remove prettify
kkrishguptaa Oct 18, 2021
f729215
Merge branch 'main' of github.com:krishguptadev/awesome-github-profil…
kkrishguptaa Oct 18, 2021
f544245
Update sort.yml
kkrishguptaa Oct 18, 2021
b6d09d3
Update sort.yml
kkrishguptaa Oct 18, 2021
bc9130f
ci: fix issues
kkrishguptaa Oct 18, 2021
ad6b603
Merge branch 'main' into main
kkrishguptaa Oct 18, 2021
f2c7a3c
Update sort.yml
kkrishguptaa Oct 19, 2021
e37791b
feat: auto commit action
kkrishguptaa Oct 19, 2021
17c48a5
style(data): sort alphabetically
Oct 19, 2021
a782184
fix: unformatted files
kkrishguptaa Oct 20, 2021
fe53cbc
fix: unformatted files
kkrishguptaa Oct 20, 2021
f51182b
style: format files
kkrishguptaa Oct 20, 2021
4433b8d
fix: errors in json
kkrishguptaa Oct 20, 2021
1d7c953
Merge branch 'main' into main
kkrishguptaa Oct 20, 2021
9b765ef
fix: script doesn't run
kkrishguptaa Oct 20, 2021
c461bba
fix: install deps
kkrishguptaa Oct 20, 2021
b5813e3
Apply suggestions from code review
kkrishguptaa Oct 20, 2021
e97e6ad
style(data): sort alphabetically
Oct 20, 2021
66929bc
Merge branch 'main' into main
kkrishguptaa Nov 23, 2021
41f8b0e
chore: delete data.json
kkrishguptaa Nov 23, 2021
f4d797f
feat: autogenerate data.json
kkrishguptaa Nov 23, 2021
135ca73
feat: use autogenerate
kkrishguptaa Nov 23, 2021
a76db3b
feat: update license
kkrishguptaa Nov 23, 2021
96ce340
chore(profile-addition): migration from data.json
kkrishguptaa Nov 23, 2021
2a210c3
Merge branch 'main' into main
kkrishguptaa Nov 23, 2021
bff2a23
Delete sort.yml
kkrishguptaa Nov 23, 2021
8d10293
Update generate.js
kkrishguptaa Nov 24, 2021
5556282
Merge branch
kkrishguptaa Nov 26, 2021
955cb60
Merge into main
kkrishguptaa Nov 26, 2021
182fc95
Merge branch
kkrishguptaa Nov 28, 2021
ba3c9c4
Merrge branch
kkrishguptaa Nov 30, 2021
9b189f4
Merge branch
kkrishguptaa Nov 30, 2021
9c3fc8b
Merge branch 'main' into main
kkrishguptaa Dec 3, 2021
05f1ac2
Updating the `profiles.md` file
github-actions[bot] Dec 3, 2021
12baf68
fix: issues in cayman theme
kkrishguptaa Dec 3, 2021
ab3dcc2
Merge branch 'main' into main
kkrishguptaa Dec 4, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/sort.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on: [push]

jobs:
sort:
runs-on: ubuntu-latest
name: Sort Data
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- name: Sort Usernames Alphabetically
run: |
npm ci
node scripts/sort.js
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'style(data): sort alphabetically'

- name: Prettify code
uses: creyD/prettier_action@v3.1
with:
only_changed: True=
dry: True
prettier_options: --write **/*.{md,json,yml,yaml}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading