Просмотр исходного кода

change default mode to 'inactive'

Yuki Takei 5 лет назад
Родитель
Сommit
6e66241664
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      bin/github-actions/list-brahches.js

+ 2 - 2
bin/github-actions/list-brahches.js

@@ -5,7 +5,7 @@
  *  node list-branches [OPTION]
  *
  * OPTIONS:
- *  --disused : Return disused branches (default)
+ *  --inactive : Return inactive branches (default)
  *  --illegal : Return illegal named branches
  */
 
@@ -144,7 +144,7 @@ async function main(mode) {
 
 const args = process.argv.slice(2);
 
-let mode = 'disused';
+let mode = 'inactive';
 if (args.length > 0 && args[0] === '--illegal') {
   mode = 'illegal';
 }