Skip to content

Commit 5351aff

Browse files
Merge pull request #46 from alex-page/master
v0.0.5
2 parents ebb189e + 1041906 commit 5351aff

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
---
66

7+
## 0.0.5 - 2021-05-10
8+
9+
- Fix broken imports in v0.0.4
10+
711
## 0.0.4 - 2021-05-07
812

913
- Update dependencies

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- name: Approve pull request
2424
if: github.actor == 'dependabot[bot]'
25-
uses: andrewmusgrave/automatic-pull-request-review@0.0.4
25+
uses: andrewmusgrave/automatic-pull-request-review@0.0.5
2626
with:
2727
repo-token: ${{ secrets.GITHUB_TOKEN }}
2828
event: APPROVE

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import core from '@actions/core';
2-
import github from '@actions/github';
1+
import * as core from '@actions/core';
2+
import * as github from '@actions/github';
33

44
const token = core.getInput('repo-token');
55
const requestEvent = core.getInput('event');

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "automatic-pull-request-review",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"description": "👍 Github action to automate pull requests",
55
"private": true,
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)