Fix full page reload when clicking internal links in SPA apps #107
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update Contributors | |
on: | |
push: | |
branches: [main, dev] | |
schedule: | |
- cron: "0 0 * * 0" # Every Sunday at midnight UTC | |
jobs: | |
update-contributors: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
fetch-depth: 0 | |
- name: Update Contributors in README.md | |
uses: akhilmhdh/[email protected] | |
with: | |
image_size: 90 | |
columns_per_row: 7 | |
auto_detect_branch_protection: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update Contributors in README_CN.md | |
uses: akhilmhdh/[email protected] | |
with: | |
image_size: 90 | |
columns_per_row: 7 | |
readme_path: README_CN.md | |
auto_detect_branch_protection: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update Contributors in README_JP.md | |
uses: akhilmhdh/[email protected] | |
with: | |
image_size: 90 | |
columns_per_row: 7 | |
readme_path: README_JP.md | |
auto_detect_branch_protection: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |