Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for deprecated repos etc. #90

Merged
merged 2 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/sync-triage-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@ jobs:
- Homebrew/brew.sh
- Homebrew/formula-patches
- Homebrew/formulae.brew.sh
- Homebrew/gsoc
- Homebrew/homebrew-aliases
- Homebrew/homebrew-autoupdate
- Homebrew/homebrew-bundle
- Homebrew/homebrew-cask
- Homebrew/homebrew-cask-drivers
- Homebrew/homebrew-cask-fonts
- Homebrew/homebrew-cask-versions
- Homebrew/homebrew-command-not-found
Expand All @@ -41,6 +39,7 @@ jobs:
- Homebrew/install
- Homebrew/ruby-macho
- Homebrew/rubydoc.brew.sh
fail-fast: false
steps:
- name: Clone main repository
uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/triage-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
stale:
if: >
startsWith(github.repository, 'Homebrew/') && (
github.repository_owner == 'Homebrew' && (
github.event_name != 'issue_comment' || (
contains(github.event.issue.labels.*.name, 'stale') ||
contains(github.event.pull_request.labels.*.name, 'stale')
Expand All @@ -48,7 +48,7 @@ jobs:

bump-pr-stale:
if: >
startsWith(github.repository, 'Homebrew/') && (
github.repository_owner == 'Homebrew' && (
github.event_name != 'issue_comment' || (
contains(github.event.issue.labels.*.name, 'stale') ||
contains(github.event.pull_request.labels.*.name, 'stale')
Expand All @@ -70,13 +70,14 @@ jobs:
any-of-labels: "bump-formula-pr,bump-cask-pr"

lock-threads:
if: startsWith(github.repository, 'Homebrew/') && github.event_name != 'issue_comment'
if: github.repository_owner == 'Homebrew' && github.event_name != 'issue_comment'
runs-on: ubuntu-latest
steps:
- name: Lock Outdated Threads
uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
process-only: 'issues, prs'
issue-inactive-days: 30
add-issue-labels: outdated
pr-inactive-days: 30
Expand Down