V3/mac menu fixes #71
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: Auto Label Issues | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
pull_request_target: | |
types: [opened, edited, reopened, synchronize] | |
jobs: | |
auto-label: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Label issues and PRs by content | |
uses: github/[email protected] | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/issue-labeler.yml | |
enable-versioned-regex: 0 | |
include-title: 1 | |
- name: Label issues and PRs by file paths | |
uses: actions/labeler@v4 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
configuration-path: .github/file-labeler.yml | |
sync-labels: true |