Skip to content
Merged
Show file tree
Hide file tree
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/update-contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.ADMIN_PAT }}
- uses: actions/setup-node@v6
with:
node-version: 24
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Update contributors data
run: npm run fetch:contributors
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ADMIN_PAT }}
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-project-stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.ADMIN_PAT }}
- uses: actions/setup-node@v6
with:
node-version: 24
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Fetch project stats from GitHub API
run: npm run fetch:project-stats
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ADMIN_PAT }}
- name: Commit and push if changed
run: |
git config user.name "github-actions[bot]"
Expand Down
Loading