次の方法で共有


resources.containers.container.trigger の定義

コンテナー リソースのトリガー条件を指定します。

この定義を参照する定義: resources.containers.container

実装

実装 形容
トリガー: 有効、タグ トリガーするタグの一覧を指定します。
トリガー: なし |true 無効にする場合は none、すべてのイメージ タグでトリガーする場合は true を指定します。

備考

無効にする場合は none、すべてのイメージ タグでトリガーする場合は true を指定するか、次の例で説明するように完全な構文を使用します。

trigger: enabled, tags

実行をトリガーするタグを構成します。

trigger:
  enabled: boolean # Whether the trigger is enabled; defaults to true.
  tags: includeExcludeStringFilters | [ string ] # Tag names to include or exclude for triggering a run.

プロパティ

ブールを します。
トリガーが有効になっているかどうかを します。既定値は true です。

includeExcludeStringFiltersを します。
実行をトリガーするために含めるか除外するタグ名です。

次の例では、production*に一致するタグに対してトリガーが有効になっています。 タグを指定するときは、正確な名前またはワイルドカードを使用できます。 詳細については、ワイルドカードを参照してください。

resources:         
  containers:
  - container: petStore      
    type: ACR  
    azureSubscription: ContosoARMConnection
    resourceGroup: ContosoGroup
    registry: petStoreRegistry
    repository: myPets
    trigger: 
      tags:
        include: 
        - production*

trigger: none |真

無効にする場合は none、すべてのイメージ タグでトリガーする場合は true を指定します。

trigger: none | true # Specify none to disable or true to trigger on all image tags.

trigger 文字列。 使用できる値: なし |真。

無効にする場合は none、すべてのイメージ タグでトリガーする場合は true を指定します。

備考

トリガーを無効にする none を指定するか、有効にする true を指定します。 指定しない場合、既定値は noneです。 特定のタグに基づいてトリガーを構成するには、次のセクションを参照してください。

resources:         
  containers:
  - container: petStore      
    type: ACR  
    azureSubscription: ContosoARMConnection
    resourceGroup: ContosoGroup
    registry: petStoreRegistry
    repository: myPets
    trigger: 
      tags: none # Triggers disabled
resources:         
  containers:
  - container: petStore      
    type: ACR  
    azureSubscription: ContosoARMConnection
    resourceGroup: ContosoGroup
    registry: petStoreRegistry
    repository: myPets
    trigger: 
      tags: true # Triggers enabled for all tags

関連項目