mergeable.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing,
  12. # software distributed under the License is distributed on an
  13. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  14. # KIND, either express or implied. See the License for the
  15. # specific language governing permissions and limitations
  16. # under the License.
  17. ---
  18. version: 2
  19. mergeable:
  20. - when: pull_request.*, pull_request_review.*
  21. name: synchronize change for sql files
  22. validate:
  23. # Sql files must change synchronize
  24. - do: dependent
  25. files:
  26. - 'dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_h2.sql'
  27. - 'dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_mysql.sql'
  28. - 'dolphinscheduler-dao/src/main/resources/sql/dolphinscheduler_postgresql.sql'
  29. message: 'Sql files not change synchronize'
  30. # Temporary comment this because sometime mergable will become mad keep adding or deleting the label
  31. # # Add labels 'sql not sync' and comment to reviewers if Sql files not change synchronize
  32. # fail:
  33. # - do: comment
  34. # payload:
  35. # body: >
  36. # :warning: This PR do not change database DDL synchronize.
  37. # - do: labels
  38. # add: 'sql not sync'
  39. # # Remove labels 'sql not sync' if pass
  40. # pass:
  41. # - do: labels
  42. # delete: 'sql not sync'