0

内部に 3 つのシステムを持つ monorepo があります。システムごとに個別のビルドを作成したいと考えています。

特定のフォルダーでファイルが変更された場合にのみパイプラインをトリガーするにはどうすればよいですか?

私たちはgithubを使用しています

steps:

  - label: 'Lint'
    command: '.buildkite/scripts/lint.sh'
    agents:
      node: true
      queue: xyz

  - label: 'Run Tests'
    command: '.buildkite/scripts/tests.sh'
    agents:
      node: true
      queue: xyz

4

1 に答える 1