From 148e7cddd3b0861e2d38e7e62e44eea97a793cdb Mon Sep 17 00:00:00 2001 From: G r e y Date: Fri, 15 Apr 2022 16:26:20 -0400 Subject: [PATCH] chore: update semantic types (#1030) Summary: PRs like #1025 feel like they deserve a doc: type, but we didn't have one. Furthermore our definitions for correct and fix were stale. --- .github/semantic.yaml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/semantic.yaml b/.github/semantic.yaml index eedee97431..aeb4d469b7 100644 --- a/.github/semantic.yaml +++ b/.github/semantic.yaml @@ -25,26 +25,22 @@ types: # A build of any kind. - build - # A RELEASED fix that will NOT be back-ported. The originating issue may have - # been discovered internally or externally to Coder. - - fix - - # Any code task that is ignored for changelog purposes. Examples include - # devbin scripts and internal-only configurations. + # Any code task that operates outside of CI, docs, or the product. Examples + # include configurations, linters etc. - chore # Any work performed on CI. - ci - - # An UNRELEASED correction. For example, features are often built - # incrementally and sometimes introduce minor flaws during a release cycle. - # Corrections address those increments and flaws. - - correct + + - example # Work that directly implements or supports the implementation of a feature. - feat - # A fix for a RELEASED bug (regression fix) that is intended for patch-release + # A fix for either a released or unrelesed bug. + - fix + + # A fix for a released bug (regression fix) that is intended for patch-release # purposes. - hotfix