directory property
Specify the folder where the code will be generated.
コードを生成するフォルダを指定します。
Implementation
@override
String get directory {
  final workingPath = Directory.current.difference(workingDirectory);
  return "${workingPath.isEmpty ? "." : workingPath}/.github/workflows";
}