Skip to content

Commit b602469

Browse files
docs: fix github capitalization (#116)
1 parent b099f17 commit b602469

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
### ⚠ BREAKING CHANGES
55

6-
* Github Action inputs are changed to allow both Expo and EAS CLI.
6+
* GitHub Action inputs are changed to allow both Expo and EAS CLI.
77

88
### New features
99

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to Expo Github Action
1+
# Contributing to Expo GitHub Action
22

33
## 📦 Download and Setup
44

@@ -10,9 +10,9 @@
1010

1111
## 🏎️ Running a custom version
1212

13-
To try out your changed with Github Action, you have [to reference your fork and/or branch or commit reference](https://docs.github.com/en/actions/learn-github-actions/finding-and-customizing-actions#using-release-management-for-your-custom-actions) in the workflow you want to try. After that, you have two options:
13+
To try out your changed with GitHub Action, you have [to reference your fork and/or branch or commit reference](https://docs.github.com/en/actions/learn-github-actions/finding-and-customizing-actions#using-release-management-for-your-custom-actions) in the workflow you want to try. After that, you have two options:
1414

15-
1. Run the workflow in Github Actions itself by triggering your workflow.
15+
1. Run the workflow in GitHub Actions itself by triggering your workflow.
1616
2. Run the workflow locally with [nektos/act](https://github.com/nektos/act).
1717

1818
## ✅ Testing
@@ -45,7 +45,7 @@ To get your PR merged as fast as possible, please make sure you have done the fo
4545

4646
## 🚀 Releasing a new version
4747

48-
To release a new version for Github Actions, we have to create a new release in Github. You can run the `Release` workflow to generate a new version, changelog, and Github release.
48+
To release a new version for GitHub Actions, we have to create a new release in GitHub. You can run the `Release` workflow to generate a new version, changelog, and GitHub release.
4949

5050
After the exact version tag is created, update the `v{major}` tag to the latest major version. Make sure you are on the default branch at the commit of versioning.
5151

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<h1>expo github action</h1>
33
<p></p>
4-
<p>Publish, build or manage your <a href="https://github.com/expo/expo">Expo</a> app with Github Actions!</p>
4+
<p>Publish, build or manage your <a href="https://github.com/expo/expo">Expo</a> app with GitHub Actions!</p>
55
<sup>
66
<a href="https://github.com/expo/expo-github-action/releases">
77
<img src="https://img.shields.io/github/release/expo/expo-github-action/all.svg?style=flat-square" alt="releases" />
@@ -131,7 +131,7 @@ jobs:
131131
132132
### Creating a new EAS build
133133
134-
You can also install [EAS](https://docs.expo.dev/eas/) CLI with this Github Action.
134+
You can also install [EAS](https://docs.expo.dev/eas/) CLI with this GitHub Action.
135135
Below we've swapped `expo-version` with `eas-version`, but you can also use them together.
136136
Both the `token` and `username`/`password` is shared between both Expo and EAS CLI.
137137

src/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type AuthenticateOptions = {
1515
};
1616

1717
/**
18-
* Get a boolean value from string, useful for Github Actions boolean inputs.
18+
* Get a boolean value from string, useful for GitHub Actions boolean inputs.
1919
*/
2020
export function getBoolean(value: string, defaultValue = false): boolean {
2121
return (value.toLowerCase() || (defaultValue ? 'true' : 'false')) === 'true';

0 commit comments

Comments
 (0)