various: fix deprecate/disable reason wording #130098
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: Triage tasks | |
on: pull_request_target | |
concurrency: | |
group: "triage-${{ github.event.number }}" | |
cancel-in-progress: true | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
steps: | |
- name: Check commit format | |
uses: Homebrew/actions/check-commit-format@master | |
with: | |
token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} | |
- name: Label pull request | |
uses: Homebrew/actions/label-pull-requests@master | |
if: always() | |
with: | |
token: ${{secrets.HOMEBREW_GITHUB_PUBLIC_REPO_TOKEN}} | |
def: | | |
- label: cask deprecated | |
path: Casks/.+ | |
content: \n deprecate!.*\n | |
- label: cask disabled | |
path: Casks/.+ | |
content: \n disable!.*\n | |
- label: new cask | |
status: added | |
path: Casks/.+ | |
allow_any_match: true | |
- label: marked for removal/rejection | |
status: removed | |
path: Casks/.+ | |
- label: documentation | |
path: (.*\.md|\.github/ISSUE_TEMPLATE/.*\.yml) | |
- label: bump-cask-pr | |
pr_body_content: Created with `brew bump-cask-pr` | |
- label: missing description | |
path: Casks/.+ | |
missing_content: | |
- \n desc .+\n | |
- cask "font- | |
- label: extract_plist livecheck | |
path: Casks/.+ | |
content: strategy :extract_plist | |
- label: missing zap | |
path: Casks/.+ | |
missing_content: zap .+\n | |
- label: autobump | |
path: \.github/autobump\.txt | |
allow_any_match: true | |
- label: linux cask | |
path: Casks/.+ | |
content: (x86_64|arm64)_linux |