Commit efbc70eb authored by Olivia Madrid's avatar Olivia Madrid
Browse files

(chore): milestones desc

parent 8e5fe077
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -11,8 +11,8 @@ title: Git / GitLab
  - [Issues](https://gitlab.com/groups/minds/-/issues) - all of the bite-size tasks that we want to complete
  - [Merge requests](https://gitlab.com/groups/minds/-/merge_requests) - new code that hasn't been merged yet
  - [Sprints](https://gitlab.com/groups/minds/-/milestones) - ongoing two-week periods of continuous development
  - [Milestones](https://gitlab.com/groups/minds/-/milestones)
  - [Epics](https://gitlab.com/groups/minds/-/epics) - longer-term projects containing issues that share a theme
  - [Milestones](https://gitlab.com/groups/minds/-/milestones) - product/release-focused blocks of time that make up epics
  - [Epics](https://gitlab.com/groups/minds/-/epics) - longer-term projects containing milestones that share a theme
  - [Roadmap](https://gitlab.com/groups/minds/-/roadmap) - visualization of epic timelines

- [Minds Repository](https://gitlab.com/minds/minds)
@@ -55,7 +55,7 @@ Tag issues with:
- Related epic (if applicable)
- Related milestone (if applicable)
- A weight (see [below](####issue-weights))
- Time tracking (include on the issue page, either in the description or as a comment)
- Time tracking (include on the issue page, either in the description or as a comment). Each sprint should add up to 60h (30h per week - this allows for meetings/planning to not interfere with the estimates)
  - Time estimate, e.g. `/estimate 1d 2h 30m`
  - Time spent, e.g. `/spend 4h 15m`

@@ -151,3 +151,7 @@ Bugs generally start off in the bug triage system (with a `Type::Bug (Triage)` l
- `Triage::Unable to replicate` - we can't reproduce the bug and consequently are unable to resolve it

When the bug is replicable and the issue contains necessary information for a developer to fix it, the bug is taken out of triage by removing the `Type::Bug (Triage)` label and replacing it with either `Type::Bug` or `Type::Regression`. If it's a regression, apply a `Regression::` label so we can identify where things went wrong.

## Epics

Epics will span multiple milestones for a project (#mvp, #review, #release). Avoid using sub epics, as they mess up the roadmap.
+34 −19
Original line number Diff line number Diff line
@@ -23,56 +23,71 @@ class Footer extends React.Component {

  render() {
    return (
      <footer className="nav-footer" id="footer">
        <section className="sitemap">
          <a href={this.props.config.baseUrl} className="nav-home">
      <footer className='nav-footer' id='footer'>
        <section className='sitemap'>
          <a href={this.props.config.baseUrl} className='nav-home'>
            {this.props.config.footerIcon && (
              <img
                src={this.props.config.baseUrl + this.props.config.footerIcon}
                alt={this.props.config.title}
                width="66"
                height="58"
                width='66'
                height='58'
              />
            )}
          </a>
          <div>
            <h5>Docs</h5>
            <a href={this.docUrl('getting-started/introduction', this.props.language)}>
            <a
              href={this.docUrl(
                'getting-started/introduction',
                this.props.language
              )}
            >
              Getting Started
            </a>
            <a href={this.docUrl('guides/deployment', this.props.language)}>
              Guides
            </a>
            <a href={this.docUrl('contributing/contributing', this.props.language)}>
            <a
              href={this.docUrl(
                'contributing/contributing',
                this.props.language
              )}
            >
              Contributing
            </a>
          </div>
          <div>
            <h5>Community</h5>
            <a href="https://www.minds.com/groups/profile/365903183068794880/feed">Open Source Community Group</a>
            <a href='https://www.minds.com/groups/profile/365903183068794880/feed'>
              Open Source Community Group
            </a>
            <a
              href="https://stackoverflow.com/questions/tagged/"
              target="_blank"
              rel="noreferrer noopener">
              href='https://stackoverflow.com/questions/tagged/'
              target='_blank'
              rel='noreferrer noopener'
            >
              Stack Overflow
            </a>
          </div>
          <div>
            <h5>More</h5>
            <a href="https://gitlab.com/minds">Gitlab</a>
            <a href='https://gitlab.com/minds'>GitLab</a>
            <span></span>
            <a className="github-button" 
              href="https://github.com/minds/minds"
              data-icon="octicon-star"
              data-size="large"
              data-show-count="true"
              aria-label="Star minds/minds on GitHub">
            <a
              className='github-button'
              href='https://github.com/minds/minds'
              data-icon='octicon-star'
              data-size='large'
              data-show-count='true'
              aria-label='Star minds/minds on GitHub'
            >
              Star
            </a>
          </div>
        </section>

        <section className="copyright">{this.props.config.copyright}</section>
        <section className='copyright'>{this.props.config.copyright}</section>
      </footer>
    );
  }