You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# **What it does**: In the open source repo, when the "help wanted" or "good first issue" labels are added to an issue, the issue is added to the "Help wanted" column on the project board.
# **Why we have it**: To keep track of help wanted issues.
# **Who does it impact**: Open-source contributors.
on:
issues:
types:
- labeled
permissions:
contents: read
jobs:
move_issues:
if: >-
${{
github.repository == 'github/docs' &&
(github.event.label.name == 'help wanted' || github.event.label.name == 'good first issue')