Skip to content

Automatically update Iteration status on date

Mario de la Ossa requested to merge automatic-iteration-status-update into master

What does this MR do?

We need to automatically update the state_machine for Iterations when the dates change.

The cronjob is set to 00:05 every day.

The two SQL Queries for updates:

Setting started

UPDATE "sprints" 
SET "state_enum" = 2 
WHERE ("sprints"."state_enum" IN (1)) AND (start_date <= '2020-07-15') AND (due_date > '2020-07-15')

Setting closed

UPDATE "sprints"
SET "state_enum" = 3
WHERE (("sprints"."state_enum" IN (1)) OR ("sprints"."state_enum" IN (2))) AND (due_date <= '2020-07-15')

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Mario de la Ossa

Merge request reports

Loading