Skip to content

Commit

Permalink
Merge pull request #126 from Nr18/develop
Browse files Browse the repository at this point in the history
chore: remove deprecated functionality (#125)
  • Loading branch information
Nr18 authored Mar 6, 2023
2 parents 860d524 + dd774aa commit 61fb602
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- run: poetry --version
- name: Prepare variables
id: vars
run: |
echo "version=$(awk '/version/{print $NF}' pyproject.toml | sed 's/\"//g')" >> $GITHUB_OUTPUT
- name: Install dependencies
run: make install
- name: Run check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Prepare variables
id: vars
run: |
echo ::set-output name=version::$(awk '/version/{print $NF}' pyproject.toml | sed 's/\"//g')
- uses: Gr1N/setup-poetry@v8
with:
poetry-version: "1.4.0"
poetry-version: 1.4.0
- uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}
- run: poetry --version
- name: Prepare variables
id: vars
run: |
echo "version=$(awk '/version/{print $NF}' pyproject.toml | sed 's/\"//g')" >> $GITHUB_OUTPUT
- name: Install dependencies
run: make install
- name: Run check
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pull-request-codecommit"
version = "0.5.0"
version = "0.5.1"
description = "pull-request-codecommit creates a PR within CodeCommit based on your commit messages."
authors = ["Joris Conijn <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 61fb602

Please sign in to comment.