You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2023/03/16 15:41:49 UTC

[hop] branch master updated: Add API component to GitHub Templates, fixes #2599

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new bb44a679f1 Add API component to GitHub Templates, fixes #2599
     new 1b11932fd1 Merge pull request #2600 from hansva/master
bb44a679f1 is described below

commit bb44a679f1a341e853d26cf6cc7a81a412a6db96
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Thu Mar 16 16:41:21 2023 +0100

    Add API component to GitHub Templates, fixes #2599
---
 .github/ISSUE_TEMPLATE/bug.yml     | 1 +
 .github/ISSUE_TEMPLATE/feature.yml | 1 +
 .github/ISSUE_TEMPLATE/task.yml    | 1 +
 .github/issue-rules.yml            | 3 +++
 4 files changed, 6 insertions(+)

diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml
index a953a1e2e1..06ea4dadc9 100644
--- a/.github/ISSUE_TEMPLATE/bug.yml
+++ b/.github/ISSUE_TEMPLATE/bug.yml
@@ -88,6 +88,7 @@ body:
       label: Issue Component
       options:
         - "Component: Actions"
+        - "Component: API"
         - "Component: Beam"
         - "Component: CLI"
         - "Component: Containers"
diff --git a/.github/ISSUE_TEMPLATE/feature.yml b/.github/ISSUE_TEMPLATE/feature.yml
index 2e0f4f2736..cc3a55db60 100644
--- a/.github/ISSUE_TEMPLATE/feature.yml
+++ b/.github/ISSUE_TEMPLATE/feature.yml
@@ -53,6 +53,7 @@ body:
       multiple: true
       options:
         - "Component: Actions"
+        - "Component: API"
         - "Component: Beam"
         - "Component: CLI"
         - "Component: Containers"
diff --git a/.github/ISSUE_TEMPLATE/task.yml b/.github/ISSUE_TEMPLATE/task.yml
index b784c3f129..ae7a26ba5c 100644
--- a/.github/ISSUE_TEMPLATE/task.yml
+++ b/.github/ISSUE_TEMPLATE/task.yml
@@ -53,6 +53,7 @@ body:
       multiple: true
       options:
         - "Component: Actions"
+        - "Component: API"
         - "Component: Beam"
         - "Component: CLI"
         - "Component: Containers"
diff --git a/.github/issue-rules.yml b/.github/issue-rules.yml
index b77feba120..bf0bd1770a 100644
--- a/.github/issue-rules.yml
+++ b/.github/issue-rules.yml
@@ -29,6 +29,9 @@ rules:
 - valueFor: 'Component'
   contains: 'Actions'
   addLabels: [ 'Actions' ]
+- valueFor: 'Component'
+  contains: 'API'
+  addLabels: [ 'API' ]
 - valueFor: 'Component'
   contains: 'Beam'
   addLabels: ['Beam']