Compare commits

7 Commits

Author SHA1 Message Date
Shmavon Gazanchyan
6ddbea3e6e Fix typo in donation message in README template 2025-11-12 22:06:47 +00:00
Shmavon Gazanchyan
fcbeed8930 Update README-template with Warp.dev sponsorship
Added sponsorship acknowledgment for Warp.dev that have donated to a charity of my choice.
2025-11-12 22:05:24 +00:00
Sammy Hori
55940aeb2d Merge pull request #1798 from MunGell/build-workflow-improve
Improve the build workflow
2025-11-12 12:44:44 +00:00
Sammy Hori
a5850be0a0 Replaced old template file with new one in Build workflow
This will cause the Build workflow to be triggered by changes to the new template.
2025-11-12 12:42:41 +00:00
Sammy Hori
ff5c514653 Set the Build workflow to only commit if the README changes
If the README hasn't changed (e.g. a data.json reformat was done), it currently attempts to commit and fails, causing a workflow failure.
2025-11-12 12:40:59 +00:00
Sammy Hori
f72a441566 Merge pull request #1797 from MunGell/format-datajson
Autoreformat the data.json file
2025-11-12 12:21:43 +00:00
Sammy Hori
d65d22f802 Autoreformat the data.json file
Mostly tab -> 4 spaces changes and indentation fixes

Co-author added as they submitted a PR which pointed out the formatting issues.

Co-authored-by: Shikha <117267724+sheechakrawarty@users.noreply.github.com>
2025-11-12 12:20:02 +00:00
3 changed files with 57 additions and 37 deletions

View File

@@ -3,6 +3,14 @@
<!-- SEE THE CONTRIBUTING GUIDE (`CONTRIBUTING.md`) FOR MORE GUIDANCE -->
<!-- YOU MAY IGNORE THIS MESSAGE IF YOU ARE EDITING `README-template.j2` -->
<div align="center">
<div>
<a href="https://go.warp.dev/awesome-for-beginners">
<img alt="Thanks to Warp.dev for sponsoring this repository through a donation to a charity of my choice." src="https://raw.githubusercontent.com/warpdotdev/brand-assets/refs/heads/main/Github/Warp%20Packs/Warp-Github-SM-01.jpg">
</a>
</div>
</div>
# Awesome First Pull Request Opportunities [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
Inspired by [First Timers Only](https://kentcdodds.com/blog/first-timers-only) blog post.
@@ -32,6 +40,8 @@ Contributions are welcome! See the [contributing guidelines](CONTRIBUTING.md).
## Thanks to GitHub Sponsors
Thanks to Warp.dev for sponsoring this repository through a donation to a charity of my choice.
<table><tr>{% for sponsor in sponsors %}{% if loop.index != 1 and (loop.index - 1) % 6 == 0 %}</tr><tr>{% endif %}<td align="center"><a href="{{ sponsor.link }}"><img src="{{ sponsor.image }}" width="60px;" alt=""/><br/><sub><b>{{ sponsor.name }}</b></sub></a></td>{% endfor %}</tr></table>
## License

View File

@@ -6,7 +6,7 @@ on:
- main
paths:
- 'data.json'
- '.github/tpl.md'
- '.github/README-template.j2'
jobs:
build:
@@ -17,7 +17,12 @@ jobs:
run: sudo pip install jinja2
- name: Build
run: python3 .github/scripts/render-readme.py
- name: Check if file changed
id: changedCheck
continue-on-error: true
run: git diff --exit-code README.md
- name: Commit
if: steps.changedCheck.outcome == 'failure'
run: |
git config --global user.name 'Shmavon Gazanchyan'
git config --global user.email 'MunGell@users.noreply.github.com'

View File

@@ -2044,7 +2044,8 @@
"link": "https://github.com/activist-org/activist",
"label": "good first issue",
"technologies": [
"TypeScript", "Python"
"TypeScript",
"Python"
],
"description": "activist.org is a network for political action that allows people to coordinate and collaborate on the issues that matter most to them."
},
@@ -2062,7 +2063,9 @@
"name": "Manifest",
"link": "https://github.com/mnfst/manifest",
"label": "good first issue",
"technologies": ["TypeScript"],
"technologies": [
"TypeScript"
],
"description": "Manifest is an open-source Backend-as-a-Service allowing developers to create a backend easily and quickly."
},
{
@@ -2126,7 +2129,9 @@
"name": "supabase",
"link": "https://github.com/supabase/supabase",
"label": "good first issue",
"technologies": ["TypeScript"],
"technologies": [
"TypeScript"
],
"description": "The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications."
}
]