An error occurred fetching the project authors.
  1. 06 Jul, 2021 1 commit
  2. 02 Jul, 2021 1 commit
  3. 22 Dec, 2020 1 commit
  4. 16 Dec, 2020 1 commit
  5. 20 Nov, 2020 1 commit
  6. 07 Oct, 2020 1 commit
  7. 08 Jun, 2020 1 commit
  8. 05 Jun, 2020 1 commit
  9. 03 Jun, 2020 1 commit
  10. 21 May, 2020 1 commit
  11. 05 Feb, 2020 1 commit
  12. 24 Jul, 2019 1 commit
  13. 05 Jul, 2019 1 commit
  14. 12 Jun, 2019 1 commit
  15. 18 Feb, 2019 1 commit
  16. 07 Mar, 2018 2 commits
    • Mayra Cabrera's avatar
      Fixes broken specs · a196d949
      Mayra Cabrera authored
      - Remove unwanted chat was failing as a consequence of moving external support from Premium to starter. We have a dependency on config_processor a project with a repository must be used
      
      Closes #5171
      a196d949
    • Mayra Cabrera's avatar
      Fixes broken specs · 99b870d5
      Mayra Cabrera authored
      - Remove unwanted chat was failing as a consequence of moving external support from Premium to starter. We have a dependency on config_processor a project with a repository must be used
      
      Closes #5171
      99b870d5
  17. 05 Mar, 2018 1 commit
    • Yorick Peterse's avatar
      Added basic implementation of GitLab Chatops · 6c8450aa
      Yorick Peterse authored
      The chatops solution is built on top of CI pipelines and essentially
      acts as a different UI for scheduling pipelines manually. Pipelines
      scheduled via chat have access to an environment variable called
      "CHAT_INPUT". This variable stores the arguments that were passed to the
      chatops command.
      
      Output is retrieved by reading specific trace sections from the build
      output. There are two sections supported (in this order):
      
      1. chat_reply
      2. build_script
      
      The "chat_reply" is a trace section that one has to generate themselves,
      "build_script" in turn is provided by default. The "build_script" trace
      section also includes the output of any commands executed in the
      "before_script" list. If one doesn't want to display this output they
      should generate the custom "chat_reply" trace section.
      
      Responses are sent back via Sidekiq using the ChatNotificationWorker
      class. This ensures that existing CI related jobs won't get slowed down
      if Slack (or another chat service) is not responding.
      6c8450aa