Skip to content

Commit 8abbaf0

Browse files
docs: update casing of Github to GitHub (#43)
Syncing docs across source repos Co-authored-by: mwbrooks <[email protected]>
1 parent 5971904 commit 8abbaf0

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

docs/guides/setting-up-ci-cd-with-the-slack-cli.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ slug: /slack-cli/guides/setting-up-ci-cd-with-the-slack-cli
66

77
# Setting up CI/CD with the Slack CLI
88

9-
CI/CD is an acronym for Continuous Integration and Continuous Delivery. Also referred to as _CI/CD pipeline_, it is a common term in the world of DevOps.
9+
CI/CD is an acronym for Continuous Integration and Continuous Delivery. Also referred to as _CI/CD pipeline_, it is a common term in the world of DevOps.
1010

1111
DevOps is another acronym of sorts that stands for Development and Operations, a combination of software development (typically encompassing planning, building, coding, and testing) and operations (including software releases, deployment, and status monitoring).
1212

@@ -32,7 +32,7 @@ CI providers are tools for automating the code changes that are part of your pip
3232

3333
Some popular providers include:
3434

35-
* [Github Actions](https://github.com/features/actions)
35+
* [GitHub Actions](https://github.com/features/actions)
3636
* [CircleCI](https://circleci.com/)
3737
* [GitLab](https://about.gitlab.com/)
3838
* [Jenkins](https://www.jenkins.io/)
@@ -60,7 +60,7 @@ In addition, you'll need to obtain a service token to authorize your CI/CD setup
6060

6161
Once you've done those things, you're ready to get started! Let's walk through an example.
6262

63-
Let's take a look at the [Virtual Running Buddies sample app](https://github.com/slack-samples/deno-virtual-running-buddies).
63+
Let's take a look at the [Virtual Running Buddies sample app](https://github.com/slack-samples/deno-virtual-running-buddies).
6464

6565
First, we'll open the `deno.jsonc` file located at the root of the project:
6666

@@ -72,14 +72,14 @@ First, we'll open the `deno.jsonc` file located at the root of the project:
7272
"fmt": {
7373
"files": {
7474
"include": [
75-
"README.md",
76-
"datastores",
77-
"external_auth",
78-
"functions",
79-
"manifest.ts",
80-
"triggers",
81-
"types",
82-
"views",
75+
"README.md",
76+
"datastores",
77+
"external_auth",
78+
"functions",
79+
"manifest.ts",
80+
"triggers",
81+
"types",
82+
"views",
8383
"workflows"
8484
]
8585
}
@@ -88,13 +88,13 @@ First, we'll open the `deno.jsonc` file located at the root of the project:
8888
"lint": {
8989
"files": {
9090
"include": [
91-
"datastores",
92-
"external_auth",
93-
"functions",
94-
"manifest.ts",
95-
"triggers",
96-
"types",
97-
"views",
91+
"datastores",
92+
"external_auth",
93+
"functions",
94+
"manifest.ts",
95+
"triggers",
96+
"types",
97+
"views",
9898
"workflows"
9999
]
100100
}
@@ -106,7 +106,7 @@ First, we'll open the `deno.jsonc` file located at the root of the project:
106106
}
107107
```
108108

109-
This file is your [configuration file](https://deno.land/manual/getting_started/configuration_file). It allows you to customize Deno's built-in TypeScript compiler, formatter, and linter.
109+
This file is your [configuration file](https://deno.land/manual/getting_started/configuration_file). It allows you to customize Deno's built-in TypeScript compiler, formatter, and linter.
110110

111111
We'll also point to our import map here (`import_map.json`), which allows you to manage what versions of modules or the standard library are included with your project:
112112

@@ -178,7 +178,7 @@ While not part of this sample app, you can also generate test coverage reports f
178178

179179
## Continuous Delivery setup {#cd-pipeline}
180180

181-
On the CD side of things, there are various ways you can deploy Deno projects to the cloud. Your setup will differ based on which platform you choose.
181+
On the CD side of things, there are various ways you can deploy Deno projects to the cloud. Your setup will differ based on which platform you choose.
182182

183183
Let's look at an example `deploy.yml` file, which you would also place in the `.github/workflows` folder along with your `deno.yml` file. The steps below need to run within the app folder and are for already-deployed apps only. Its contents are as follows:
184184

0 commit comments

Comments
 (0)