Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contributors #39

Open
wants to merge 44 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
86867a6
Create contributing.py
kushal34712 Oct 3, 2024
268bdd8
Create update-contributors.yml
kushal34712 Oct 3, 2024
aad1d49
Update contributors list
actions-user Oct 3, 2024
40d6cab
Update CONTRIBUTING.md
kushal34712 Oct 3, 2024
be2849a
Update contributors list
actions-user Oct 3, 2024
77cd0fd
Update contributing.py
kushal34712 Oct 3, 2024
1fe589c
Update contributors list
actions-user Oct 3, 2024
c3c38f0
Update contributing.py
kushal34712 Oct 3, 2024
bb5a4d0
Update contributors list
actions-user Oct 3, 2024
33effed
Update CONTRIBUTING.md
kushal34712 Oct 3, 2024
7624c62
Update contributors list
actions-user Oct 3, 2024
8489a17
Update CONTRIBUTING.md
kushal34712 Oct 3, 2024
cf6a8bd
Update contributors list
actions-user Oct 3, 2024
879cb16
Update contributing.py
kushal34712 Oct 3, 2024
8730653
Update contributors list
actions-user Oct 3, 2024
39faa9d
Update contributing.py
kushal34712 Oct 3, 2024
78d3060
Update contributors list
actions-user Oct 3, 2024
4bc46a1
Update contributing.py
kushal34712 Oct 3, 2024
e394069
Update contributors list
actions-user Oct 3, 2024
89b03b5
Update contributing.py
kushal34712 Oct 3, 2024
0782154
Update contributing.py
kushal34712 Oct 3, 2024
09246af
Update contributors list
actions-user Oct 3, 2024
e812d5c
Update CONTRIBUTING.md
kushal34712 Oct 3, 2024
26748bd
Update contributors list
actions-user Oct 3, 2024
eb34337
Update README.md
kushalag198 Oct 3, 2024
1346ae8
Merge pull request #1 from kushalag198/patch-3
kushal34712 Oct 3, 2024
4e2f0a4
Update contributors list
actions-user Oct 3, 2024
153f91f
Update contributors list
actions-user Oct 7, 2024
619d70f
Update contributors list
actions-user Oct 14, 2024
9ec8dd5
Update contributors list
actions-user Oct 21, 2024
a5bf3c7
Update contributors list
actions-user Oct 28, 2024
72f5f92
Update contributors list
actions-user Nov 4, 2024
91ff3c0
Update contributors list
actions-user Nov 11, 2024
6588789
Update contributors list
actions-user Nov 18, 2024
67c6a58
Update contributors list
actions-user Nov 25, 2024
3c458c7
Update contributors list
actions-user Dec 2, 2024
282d2cb
Update contributors list
actions-user Dec 9, 2024
c272edc
Update contributors list
actions-user Dec 16, 2024
0840caa
Update contributors list
actions-user Dec 23, 2024
63fbf9b
Update contributors list
actions-user Dec 30, 2024
38c1e6d
Update contributors list
actions-user Jan 6, 2025
bd8b35a
Update contributors list
actions-user Jan 13, 2025
20da026
Update contributors list
actions-user Jan 20, 2025
b9eb36e
Update contributors list
actions-user Jan 27, 2025
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
36 changes: 36 additions & 0 deletions .github/workflows/update-contributors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Update Contributors

on:
push:
branches:
- main
schedule:
- cron: '0 0 * * 1' # Runs every Monday at midnight UTC

jobs:
update-contributors:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests

- name: Run the contributor fetch script
run: python contributing.py # Make sure your script is in the repo

- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add CONTRIBUTING.md
git commit -m "Update contributors list"
git push
Loading