From c74fc5c92610482506f4689bde06c392fef88959 Mon Sep 17 00:00:00 2001 From: Briana Swift Date: Mon, 24 Aug 2020 11:27:53 +0200 Subject: [PATCH 1/3] create label in before, and assign it to first issue --- config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.yml b/config.yml index 9847a1d..461c8d0 100644 --- a/config.yml +++ b/config.yml @@ -4,9 +4,13 @@ template: name: partner-bootcamp-actions repo: partner-bootcamp-actions-template before: + - type: createLabel + name: provision probot app + color: 8132a8 - type: createIssue title: "Activity 1: Setting up your environment!" body: new-issue.md + labels: provision probot app store: EnvironmentIssueUrl: '{{ result.data.html_url }}' EnvironmentIssueNumber: '{{ result.data.number }}' From 575dea8bdbe48ed447a3fe80d2a6d61980bb34f1 Mon Sep 17 00:00:00 2001 From: Briana Swift Date: Mon, 24 Aug 2020 11:28:57 +0200 Subject: [PATCH 2/3] put label name in single quotes --- config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yml b/config.yml index 461c8d0..37cfb8f 100644 --- a/config.yml +++ b/config.yml @@ -10,7 +10,7 @@ before: - type: createIssue title: "Activity 1: Setting up your environment!" body: new-issue.md - labels: provision probot app + labels: 'provision probot app' store: EnvironmentIssueUrl: '{{ result.data.html_url }}' EnvironmentIssueNumber: '{{ result.data.number }}' From 35356becefaf13b360eac466c87c6c83fcaaa4b6 Mon Sep 17 00:00:00 2001 From: Briana Swift Date: Mon, 24 Aug 2020 11:30:18 +0200 Subject: [PATCH 3/3] make labels in an array --- config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.yml b/config.yml index 37cfb8f..99a3812 100644 --- a/config.yml +++ b/config.yml @@ -10,7 +10,7 @@ before: - type: createIssue title: "Activity 1: Setting up your environment!" body: new-issue.md - labels: 'provision probot app' + labels: ["provision probot app"] store: EnvironmentIssueUrl: '{{ result.data.html_url }}' EnvironmentIssueNumber: '{{ result.data.number }}'