Skip to content

Commit

Permalink
Bump version to v1.2.0 (#200)
Browse files Browse the repository at this point in the history
* docs: update changelog with new release info

* chore: fix typo and add an additional step to update changelog.md file

* chore: bump version to v1.2.0

* chore: update the distribution index.js file.

* docs: fix strange typo of random extra line added

* chore: update runner from node12 to node16
  • Loading branch information
gaber85 authored Feb 9, 2023
1 parent f654139 commit 976497b
Show file tree
Hide file tree
Showing 5 changed files with 779 additions and 24 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.2.0] - 2023-02-09

- Several dependency upgrades including Github actions, which deprecates Node 12 actions.

## [1.1.2] - 2022-03-14

- [#101](https://github.com/sharesight/find-github-pull-request/pull/101) - Fetch the PR for an eventName of 'workflow_run'
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- name: Find Pull Request
id: find-pr
uses: sharesight/find-github-pull-request@1.1.2
uses: sharesight/find-github-pull-request@1.2.0
with:
# These are all default values.
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -82,11 +82,12 @@ yarn jest:tdd

#### Prepare Build

1. Deicde on a semver, eg. `1.2.3`.
1. Decide on a semver, eg. `1.2.3`.
2. Bump this version in `package.json` file—just for the sake of it.
4. Bump this version in `README.md` file.
5. Ensure that `yarn build` already has been ran and a `dist/index.js` committed; commit if not.
6. Version bumps should go via a PR and be merged into _master_ before releasing.
5. Update the `CHANGELOG.md` file with relevant release information.
6. Ensure that `yarn build` already has been ran and a `dist/index.js` committed; commit if not.
7. Version bumps should go via a PR and be merged into _master_ before releasing.

#### Create the Release

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ outputs:
description: The found PR's base sha ref's sha, eg. 'main' is currently at 'a1b2c3d4f'.

runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit 976497b

Please sign in to comment.