* Bump alex-page/github-project-automation-plus
Bumps [alex-page/github-project-automation-plus](https://github.com/alex-page/github-project-automation-plus) from fdb7991b72040d611e1123d2b75ff10eda9372c9 to 0.8.1. This release includes the previously tagged commit.
- [Release notes](https://github.com/alex-page/github-project-automation-plus/releases)
- [Commits](fdb7991b72...bb266ff4dd)
---
updated-dependencies:
- dependency-name: alex-page/github-project-automation-plus
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
* Update github-project-automation-plus version in allowed-actions
* Make the workflow linter and Sentinel happy
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James M. Greene <jamesmgreene@github.com>
29 lines
889 B
YAML
29 lines
889 B
YAML
name: Move help wanted issues
|
|
|
|
# **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:
|
|
issues: none
|
|
|
|
jobs:
|
|
move_issues:
|
|
if: >-
|
|
${{
|
|
github.repository == 'github/docs' &&
|
|
(github.event.label.name == 'help wanted' || github.event.label.name == 'good first issue')
|
|
}}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: alex-page/github-project-automation-plus@bb266ff4dde9242060e2d5418e120a133586d488
|
|
with:
|
|
project: Docs team reviews
|
|
column: Help wanted
|
|
repo-token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
|