Skip to content

Commit

Permalink
MRG: Merge pull request #90 from octue/devops/use-new-pr-description-…
Browse files Browse the repository at this point in the history
…workflow

OPS: Use new PR description workflow
  • Loading branch information
cortadocodes committed Jul 27, 2021
2 parents fcb8a7e + e35cce4 commit d5d32e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
description:
if: "!contains(github.event.pull_request.head.message, 'skip_ci_update_description')"
if: "!contains(github.event.head_commit.message, 'skip_ci_update_description')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -26,8 +26,8 @@ jobs:
- name: Compile new pull request description
run: |
echo 'PULL_REQUEST_NOTES<<EOF' >> $GITHUB_ENV
echo "$(compile-release-notes LAST_RELEASE '${{ github.event.pull_request.body }}')" >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
echo "$(compile-release-notes LAST_RELEASE ${{ github.event.pull_request.url }} ${{ secrets.GITHUB_TOKEN }})" >> $GITHUB_ENV
echo EOF >> $GITHUB_ENV
- name: Update pull request body
uses: riskledger/update-pr-description@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="twined",
version="0.0.24",
version="0.0.25",
py_modules=[],
install_requires=["jsonschema ~= 3.2.0", "python-dotenv"],
url="https://www.github.com/octue/twined",
Expand Down

0 comments on commit d5d32e1

Please sign in to comment.