Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 7月 22, 2024
  2. 7月 03, 2024
    • Abdul Wadood's avatar
      Add a keep to generate rubocop todo files · 3ec51a15
      Abdul Wadood 创作于
      We're using the housekeeper gem here to generate the `.rubocop_todo`
      files and create an MR.
      
      Run `bundle exec gitlab-housekeeper -d -k Keeps::GenerateRubocopTodos`
      to test out the changes locally.
      3ec51a15
  3. 6月 28, 2024
  4. 6月 27, 2024
  5. 6月 26, 2024
  6. 6月 13, 2024
  7. 6月 05, 2024
  8. 6月 04, 2024
  9. 6月 03, 2024
  10. 5月 29, 2024
  11. 5月 28, 2024
  12. 5月 21, 2024
  13. 5月 17, 2024
  14. 5月 04, 2024
  15. 5月 01, 2024
  16. 4月 29, 2024
  17. 4月 25, 2024
  18. 4月 22, 2024
  19. 4月 16, 2024
  20. 4月 15, 2024
  21. 4月 11, 2024
  22. 4月 10, 2024
  23. 4月 08, 2024
  24. 4月 04, 2024
  25. 3月 16, 2024
  26. 3月 05, 2024
  27. 2月 27, 2024
    • Dylan Griffith's avatar
      Don't force when generating background migration in housekeeper · ed04c03b
      Dylan Griffith 创作于
      This `force: true` option seems to generate the migration even if there
      is an existing migration with the exact same name. Additionally it
      deletes the existing migration with the same name. This is probably not
      something we ever intended to do so I'm removing it.
      
      At some point we may want to update this to skip finalizing a BBM if a
      migration with a matching name exists (or generate a guaranteed unique
      name) but it's not clear to me if we actually have a use case for this
      now. Also there are plans to be more strict about not re-using batched
      background migrations so possibly the matching name won't be very common
      in future.
      ed04c03b
  28. 2月 24, 2024
    • Dylan Griffith's avatar
      Implement apply .patch in Keeps::DeleteOldFeatureFlags · d593dcb5
      Dylan Griffith 创作于
      The `gitlab-housekeeper` currently has a very simple implementation of
      automatically removing feature flags that are past their expected usage
      date.
      
      This MR introduces new functionality to `Keeps::DeleteOldFeatureFlags`
      where it looks for a `.patch` file matching the same name as the `.yml`
      file for the feature flag. If it exists it will apply the patch.
      
      The tool will be used to fully automate the developer workflow for
      removing feature flags. Instead of developers needing to remember to
      remove their feature flag later they can just add a `.patch` file when
      they first create the feature flag. Later on the `gitlab-housekeeper`
      will come along and clean it up for them.
      d593dcb5
  29. 2月 23, 2024
    • Dylan Griffith's avatar
      Fix keeps/helpers/milestones.rb · 7e75ecd7
      Dylan Griffith 创作于
      This was not working for 2 reasons:
      
      1. The YML file URL was pointing to the HTML version and was not
         returning valid YML. It's been updated to the raw path now.
      2. The YML from this URL contains more keys than just `version` and
         `date` so we needed to ignore those other keys when constructing our
         `Struct`
      7e75ecd7
  30. 2月 21, 2024
  31. 2月 19, 2024
加载中