Skip to content

Commit

Permalink
chore(release): v0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerlox committed Nov 17, 2023
1 parent ef8dd96 commit 78ecb5d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.1.4](https://github.com/insurgent-lab/is-in-pr-action/compare/v0.1.3...v0.1.4) (2023-11-17)


### 📚 Documentation

* **readme:** add "as separate job" and examples sections ([ef8dd96](https://github.com/insurgent-lab/is-in-pr-action/commit/ef8dd96de1a114337e4213c1007b9d71b6a4635e))

## [0.1.3](https://github.com/insurgent-lab/is-in-pr-action/compare/v0.1.2...v0.1.3) (2023-11-08)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This action enables you to know if the commit is part of an open PR no matter wh

```yml
steps:
- uses: insurgent-lab/is-in-pr-action@v0.1.3
- uses: insurgent-lab/is-in-pr-action@v0.1.4
id: isInPR

- run: echo "This commit is part of a PR!"
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: insurgent-lab/is-in-pr-action@v0.1.3
- uses: insurgent-lab/is-in-pr-action@v0.1.4
id: isInPR
outputs:
result: ${{ steps.isInPR.outputs.result }}
Expand All @@ -61,7 +61,7 @@ jobs:
```yml
steps:
- uses: insurgent-lab/is-in-pr-action@v0.1.3
- uses: insurgent-lab/is-in-pr-action@v0.1.4
id: isPR
with:
# Include draft PRs. (default: true)
Expand All @@ -87,7 +87,7 @@ jobs:
prevent-duplicate-checks:
runs-on: ubuntu-latest
steps:
- uses: insurgent-lab/is-in-pr-action@v0.1.3
- uses: insurgent-lab/is-in-pr-action@v0.1.4
id: isInPR
outputs:
should-run: ${{ !(steps.isInPR.outputs.result == 'true' && github.event_name == 'push') }}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "is-in-pr-action",
"version": "0.1.3",
"version": "0.1.4",
"description": "Github Action for checking if the current commit is part of a PR",
"main": "dist/main.js",
"author": "8BitJonny (https://github.com/8BitJonny)",
Expand Down

0 comments on commit 78ecb5d

Please sign in to comment.