Skip to content

Commit 63f3666

Browse files
committed
Version bump to v0.0.2
1 parent 9a7a231 commit 63f3666

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ⑂ forker
22

3-
[![Version](https://img.shields.io/badge/Version-0.0.1-7F187F.svg)](https://github.com/wayfair-incubator/forker/releases)
3+
[![Version](https://img.shields.io/badge/Version-0.0.2-7F187F.svg)](https://github.com/wayfair-incubator/forker/releases)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-7462E0.svg)](LICENSE)
55
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-24B8EE.svg)](CODE_OF_CONDUCT.md)
66
[![Tests](https://github.com/wayfair-incubator/forker/actions/workflows/test.yml/badge.svg)](https://github.com/wayfair-incubator/forker/actions/workflows/test.yml)
@@ -19,7 +19,7 @@ The GitHub API [token](https://docs.github.com/en/github/authenticating-to-githu
1919

2020
> 💡 **Note:** Ensure the token you are using has sufficient permissions to fork repositories into your intended destination (either an organization or individual user account). In particular, the builtin `GITHUB_TOKEN` has [read-only permissions](https://docs.github.com/en/actions/reference/authentication-in-a-workflow#permissions-for-the-github_token) for repository forks, and therefore may not provide sufficient privileges for use with `forker`.
2121
22-
**Example:** `${{ secrets.GH_API_TOKEN }}`
22+
**Example:** `${{ secrets.ACCESS_TOKEN }}`
2323

2424
### `owner` (string, required)
2525

@@ -69,12 +69,12 @@ A newline-delimited (`"\n"`) string representing a list of allowed [license keys
6969

7070
### Typical
7171

72-
In most cases, you'll want to use the latest stable version (eg. `v0.0.1`):
72+
In most cases, you'll want to use the latest stable version (eg. `v0.0.2`):
7373

7474
```yaml
75-
uses: wayfair-incubator/[email protected].1
75+
uses: wayfair-incubator/[email protected].2
7676
with:
77-
token: ${{ secrets.GH_API_TOKEN }}
77+
token: ${{ secrets.ACCESS_TOKEN }}
7878
repo: tremor-runtime
7979
owner: tremor-rs
8080
user: lelia
@@ -87,7 +87,7 @@ If you're actively [developing](#Developing) a new feature for the action, you c
8787
```yaml
8888
uses: wayfair-incubator/forker@98e4e7dcc6c9a8cb29c1f8de7d6d2c03dcabc4b9
8989
with:
90-
token: ${{ secrets.GH_API_TOKEN }}
90+
token: ${{ secrets.ACCESS_TOKEN }}
9191
repo: tremor-runtime
9292
owner: tremor-rs
9393
user: lelia
@@ -98,9 +98,9 @@ with:
9898
If you are automating forking on behalf of a GitHub organization, you may wish to leverage the optional `addUser` and `licenseAllowlist` params:
9999

100100
```yaml
101-
uses: wayfair-incubator/[email protected].1
101+
uses: wayfair-incubator/[email protected].2
102102
with:
103-
token: ${{ secrets.GH_API_TOKEN }}
103+
token: ${{ secrets.ACCESS_TOKEN }}
104104
repo: tremor-runtime
105105
owner: tremor-rs
106106
org: wayfair-contribs
@@ -146,7 +146,7 @@ Then run [ncc](https://github.com/zeit/ncc) and push the results:
146146
npm run package
147147
git add dist
148148
git commit -a -m "prod dependencies"
149-
git push origin releases/v0.0.1
149+
git push origin releases/v0.0.2
150150
```
151151

152152
> 💡 **Note:** We recommend using the `--license` option for `ncc`, which will create a license file for all of the production node modules used in your project.
@@ -163,7 +163,7 @@ You can now validate the action by referencing `./` in a workflow in your repo (
163163
uses: ./
164164
with:
165165
path: ./
166-
token: ${{ secrets.GH_API_TOKEN }}
166+
token: ${{ secrets.ACCESS_TOKEN }}
167167
ref: ${{ github.event.pull_request.head.sha }}
168168
repo: tremor-runtime
169169
owner: tremor-rs

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forker",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"description": "Github action for automating fork creation",
66
"main": "lib/main.js",

0 commit comments

Comments
 (0)