Fixed the types of dark page content going out of screen #33
Workflow file for this run
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: "Issue and PR Labeler" | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
pull_request_target: | |
types: [opened, edited] | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: read | |
jobs: | |
triage-issues: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'issues' | |
steps: | |
- uses: github/[email protected] | |
with: | |
configuration-path: .github/issue-labeler.yml | |
enable-versioned-regex: 0 | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
label-pr: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request_target' | |
steps: | |
- uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/labeler.yml |