Skip to content

Commit

Permalink
Release v3.3.0 (#177)
Browse files Browse the repository at this point in the history
* Bump version

* put back check release - where did it go?
  • Loading branch information
dangoslen authored Jun 30, 2023
1 parent abf30fb commit d7dffc9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ jobs:
version: ${{ steps.read_version.outputs.version }}
path: ./CHANGELOG.md

- id: check_release
run: |
TAG=$(git ls-remote --tags origin | grep ${{ steps.read_version.outputs.tag }} | cat )
MISSING=$([[ -z "$TAG" ]] && echo 'true' || echo 'false')
echo "missing=$MISSING" >> $GITHUB_OUTPUT
- if: ${{ steps.check_release.outputs.missing == 'true' }}
uses: unsplash/comment-on-pr@master
env:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [UNRELEASED]

## [3.3.0]
### Dependencies
- Bump `actions/checkout` from 3.5.2 to 3.5.3 (#171)
- Bump `eslint` from 8.42.0 to 8.43.0 (#172)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dependabot-helper",
"version": "3.2.0",
"version": "3.3.0",
"private": false,
"description": "A GitHub Action to auto-add dependabot changes to your changelog and increment version numbers",
"main": "lib/dependabot-helper.js",
Expand Down

0 comments on commit d7dffc9

Please sign in to comment.