File tree Expand file tree Collapse file tree 3 files changed +41
-0
lines changed
Expand file tree Collapse file tree 3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ module.exports = [
1111 "actions/setup-node@c46424eee26de4078d34105d3de3cc4992202b1e" , //actions/setup-node@v2.1.4
1212 "ruby/setup-ruby@fdcfbcf14ec9672f6f615cb9589a1bc5dd69d262" , //ruby/setup-ruby@vv1.64.1
1313 "actions/stale@9d6f46564a515a9ea11e7762ab3957ee58ca50da" , //actions/stale@v 3.0.16
14+ "alex-page/github-project-automation-plus@fdb7991b72040d611e1123d2b75ff10eda9372c9" ,
15+ "andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84" ,
1416 "archive/github-actions-slack@d368c5a4ad757515a9344918f84c490b05777d94" ,
1517 "ashley-taylor/regex-property-action@93a24f845cd20790924208225cc72da8b4c6d46d" ,
1618 "crowdin/github-action@fd9429dd63d6c0f8a8cb4b93ad8076990bd6e688" ,
Original file line number Diff line number Diff line change 1+ name : Move help wanted issues
2+ on :
3+ issues :
4+ types :
5+ - labeled
6+
7+ jobs :
8+ move_issues :
9+ if : github.repository == 'github/docs' && (github.event.label.name == 'help wanted' || github.event.label.name == 'good first issue')
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - uses : alex-page/github-project-automation-plus@fdb7991b72040d611e1123d2b75ff10eda9372c9
14+ with :
15+ project : Docs team reviews
16+ column : Help wanted
17+ repo-token : ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
Original file line number Diff line number Diff line change 1+ name : Move and unlabel ready to merge issues
2+ on :
3+ issues :
4+ types :
5+ - labeled
6+
7+ jobs :
8+ unmark_for_review :
9+ if : github.repository == 'github/docs' && github.event.label.name == 'ready to merge'
10+ runs-on : ubuntu-latest
11+ steps :
12+ - name : move issue
13+ uses : alex-page/github-project-automation-plus@fdb7991b72040d611e1123d2b75ff10eda9372c9
14+ with :
15+ project : Docs team reviews
16+ column : Triage
17+ repo-token : ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}
18+ - name : remove label
19+ uses : andymckay/labeler@22d5392de2b725cea4b284df5824125054049d84
20+ with :
21+ remove-labels : ' waiting for review'
22+ repo-token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments