From 090c22f7a9f2bc04a78c1e52c55f8d6a38373b10 Mon Sep 17 00:00:00 2001
From: rioisreal <88831316+rioisreal@users.noreply.github.com>
Date: Tue, 22 Nov 2022 16:26:22 +0800
Subject: [PATCH 1/5] Create config.yml
---
.circleci/config.yml | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
create mode 100644 .circleci/config.yml
diff --git a/.circleci/config.yml b/.circleci/config.yml
new file mode 100644
index 0000000..94a8ad3
--- /dev/null
+++ b/.circleci/config.yml
@@ -0,0 +1,26 @@
+# Use the latest 2.1 version of CircleCI pipeline process engine.
+# See: https://circleci.com/docs/2.0/configuration-reference
+version: 2.1
+
+# Define a job to be invoked later in a workflow.
+# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
+jobs:
+ say-hello:
+ # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
+ # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
+ docker:
+ - image: circleci/ruby:2.4.1-node-browsers
+ # Add steps to the job
+ # See: https://circleci.com/docs/2.0/configuration-reference/#steps
+ steps:
+ - checkout
+ - run:
+ name: "Say hello"
+ command: "echo Hello, World!"
+
+# Invoke jobs via workflows
+# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
+workflows:
+ say-hello-workflow:
+ jobs:
+ - say-hello
From 828f50aee5c0657a44dd7d5e6d953e124cb94302 Mon Sep 17 00:00:00 2001
From: rioisreal <88831316+rioisreal@users.noreply.github.com>
Date: Tue, 22 Nov 2022 16:44:39 +0800
Subject: [PATCH 2/5] Update config.yml
---
.circleci/config.yml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 94a8ad3..cec260d 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -14,9 +14,14 @@ jobs:
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
steps:
- checkout
+
- run:
- name: "Say hello"
- command: "echo Hello, World!"
+ name: "build dependencies"
+ command: "build install"
+
+ - run:
+ name: "Build the jekyll site"
+ command: "bundle exec jekyll build"
# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
From 9da4286c71349f88ef499cbc43a8482ee5d0f4ab Mon Sep 17 00:00:00 2001
From: rioisreal <88831316+rioisreal@users.noreply.github.com>
Date: Tue, 22 Nov 2022 16:52:23 +0800
Subject: [PATCH 3/5] Update config.yml
add validations
---
.circleci/config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.circleci/config.yml b/.circleci/config.yml
index cec260d..f5a6b15 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -17,7 +17,7 @@ jobs:
- run:
name: "build dependencies"
- command: "build install"
+ command: "bundle install"
- run:
name: "Build the jekyll site"
From 0dce72eaee26cd1934f92d853e8fc81191fead16 Mon Sep 17 00:00:00 2001
From: rioisreal <88831316+rioisreal@users.noreply.github.com>
Date: Tue, 22 Nov 2022 17:29:24 +0800
Subject: [PATCH 4/5] Update issue templates
---
.github/ISSUE_TEMPLATE/bug_report.md | 38 +++++++++++++++++++++++
.github/ISSUE_TEMPLATE/feature_request.md | 20 ++++++++++++
2 files changed, 58 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md
create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
new file mode 100644
index 0000000..dd84ea7
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -0,0 +1,38 @@
+---
+name: Bug report
+about: Create a report to help us improve
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Describe the bug**
+A clear and concise description of what the bug is.
+
+**To Reproduce**
+Steps to reproduce the behavior:
+1. Go to '...'
+2. Click on '....'
+3. Scroll down to '....'
+4. See error
+
+**Expected behavior**
+A clear and concise description of what you expected to happen.
+
+**Screenshots**
+If applicable, add screenshots to help explain your problem.
+
+**Desktop (please complete the following information):**
+ - OS: [e.g. iOS]
+ - Browser [e.g. chrome, safari]
+ - Version [e.g. 22]
+
+**Smartphone (please complete the following information):**
+ - Device: [e.g. iPhone6]
+ - OS: [e.g. iOS8.1]
+ - Browser [e.g. stock browser, safari]
+ - Version [e.g. 22]
+
+**Additional context**
+Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
new file mode 100644
index 0000000..bbcbbe7
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -0,0 +1,20 @@
+---
+name: Feature request
+about: Suggest an idea for this project
+title: ''
+labels: ''
+assignees: ''
+
+---
+
+**Is your feature request related to a problem? Please describe.**
+A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
+
+**Describe the solution you'd like**
+A clear and concise description of what you want to happen.
+
+**Describe alternatives you've considered**
+A clear and concise description of any alternative solutions or features you've considered.
+
+**Additional context**
+Add any other context or screenshots about the feature request here.
From 858e410a805769491d88078665ac28fd418db233 Mon Sep 17 00:00:00 2001
From: rioisreal <88831316+rioisreal@users.noreply.github.com>
Date: Tue, 22 Nov 2022 18:02:40 +0800
Subject: [PATCH 5/5] ADD DESC
FIRST CHANGE
---
_config.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_config.yml b/_config.yml
index c13e288..74923f7 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,7 +1,7 @@
title: Wired Brain Coffee
logo: "/images/company-logo.png?raw=true"
description: >
- first description
+ RIO'S COFFEE SHOP
60 State Street
Suite 800