Layout polish, About improvements, and site-wide component refactors #2
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: Label All PRs | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
schedule: | |
- cron: '0 0 */2 * *' # Every 2 days at 00:00 UTC | |
workflow_dispatch: # Enables manual run from GitHub UI | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label PRs | |
uses: actions/labeler@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |