File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : ' Handle new mails'
2+ description : ' Processes new mails on the Git mailing list'
3+ author : ' Johannes Schindelin'
4+ inputs :
5+ pr-repo-token :
6+ description : ' The access token to work on the repository that holds PRs and state'
7+ required : true
8+ upstream-repo-token :
9+ description : ' The access token to work on PRs in the upstream repository'
10+ required : true
11+ test-repo-token :
12+ description : ' The access token to work on PRs in the test repository'
13+ required : true
14+ runs :
15+ using : ' node20'
16+ main : ' ./index.js'
17+ branding :
18+ icon : ' git-commit'
19+ color : ' orange'
Original file line number Diff line number Diff line change 1+ async function run ( ) {
2+ const { CIHelper } = await import ( "../dist/index.js" )
3+
4+ const ci = new CIHelper ( )
5+
6+ await ci . setupGitHubAction ( {
7+ needsMailingListMirror : true ,
8+ } )
9+ await ci . handleNewMails ( )
10+ }
11+
12+ run ( )
You can’t perform that action at this time.
0 commit comments