Skip to content

Commit

Permalink
🔄 Synced file(s) with conda/infra (conda#11247)
Browse files Browse the repository at this point in the history
Co-authored-by: Conda Bot <[email protected]>
  • Loading branch information
conda-bot and conda-bot authored Feb 22, 2022
1 parent c5d5414 commit 3d7c65b
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/boards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,20 @@ env:
jobs:
# new -> Triaging[New]
to_triaging:
# if new issue and not [backlog] or [sprint]
# if new issue (or old issue marked as [stale::recovered]) and not [backlog] or [sprint]
if: >-
!github.event.repository.fork
&& github.event.sender.login != 'conda-bot'
&& github.event_name == 'issues'
&& github.event.action == 'opened'
&& (
(
github.event.sender.login != 'conda-bot'
&& github.event.action == 'opened'
)
|| (
github.event.action == 'labeled'
&& github.event.label.name == 'stale::recovered'
)
)
&& !contains(github.event.issue.labels.*.name, 'backlog')
&& !contains(github.event.issue.labels.*.name, 'sprint')
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3d7c65b

Please sign in to comment.