Skip to content
Open
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/sync-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
({ login, id, avatar_url, html_url }));

// Store the data in a file
fs.writeFileSync('data/roadmap.json', JSON.stringify(data, null, 2));
fs.writeFileSync('data/community-users.json', JSON.stringify(data, null, 2));

- name: Commit changes
run: |
git config user.name "the-json-schema-bot[bot]"
git config user.email "the-json-schema-bot[bot]@users.noreply.github.com"
git add data/community-users.json
git diff --quiet && git diff --staged --quiet || (git commit -m "chore(community-users): update communit-users.json")
git diff --quiet && git diff --staged --quiet || (git commit -m "chore(community-users): update community-users.json")

- name: Create Pull Request
id: cpr
Expand Down
Loading