diff --git a/server/azure-pipelines.migrate.yaml b/server/azure-pipelines.migrate.yaml index 5b8930c0f..362b18a6b 100644 --- a/server/azure-pipelines.migrate.yaml +++ b/server/azure-pipelines.migrate.yaml @@ -1,6 +1,6 @@ # Adds an Entity Framework Core migration to a pull request that changes data in data/*.json -# TODO: If data/* or server/src/FilterLists.Data.Migrations/* change in origin/master, re-trigger this Pipeline. +# TODO: if data/* or server/src/FilterLists.Data.Migrations/* change in origin/master, re-trigger this Pipeline. trigger: none pr: @@ -68,14 +68,14 @@ steps: workingDirectory: server/src condition: and(ne(variables['abortIfJustMigrated.aborted'], 'true'), succeeded()) - # TODO: Merge latest data/* and server/src/FilterLists.Data.Migrations/* from origin/master. + # TODO: merge latest data/* and server/src/FilterLists.Data.Migrations/* from origin/master. - script: dotnet ef migrations add $(System.PullRequest.PullRequestNumber) -p FilterLists.Data.Migrations -s FilterLists.Api displayName: add migration workingDirectory: server/src condition: and(ne(variables['abortIfJustMigrated.aborted'], 'true'), succeeded()) - # TODO: Copy/move test-data steps from API Pipeline + # TODO: copy/move test-data steps from API Pipeline - bash: | DIFF=$(git status -s | wc -l)