mergeable.yml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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: ['sql/dolphinscheduler_h2.sql', 'sql/dolphinscheduler_mysql.sql', 'sql/dolphinscheduler_postgre.sql']
  26. message: 'Sql files not change synchronize'
  27. # Add labels 'sql not sync' if Sql files not change synchronize
  28. fail:
  29. - do: checks
  30. status: 'failure'
  31. - do: labels
  32. add: 'sql not sync'
  33. # Remove labels 'sql not sync' if pass
  34. pass:
  35. - do: checks
  36. status: 'success'
  37. - do: labels
  38. delete: 'sql not sync'