Fix base image and install via poetry #60
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow updates the pull request description with an auto-generated section containing the categorised commit | |
# message headers of the commits since the release. The auto generated section is enveloped between two comments: | |
# "<!---START AUTOGENERATED NOTES --->" and "<!--- END AUTOGENERATED NOTES --->". Anything outside these in the | |
# description is left untouched. Auto-generated updates can be skipped for future commits if | |
# "<!--- SKIP AUTOGENERATED NOTES --->" is added to the pull request description. | |
name: update-pull-request | |
# Only trigger for pull requests into main branch. | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
description: | |
if: "!contains(github.event.pull_request.body, '<!--- SKIP AUTOGENERATED NOTES --->')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: octue/generate-pull-request-description@1.0.0.beta-2 | |
id: pr-description | |
with: | |
pull_request_url: ${{ github.event.pull_request.url }} | |
api_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Update pull request body | |
uses: riskledger/update-pr-description@v2 | |
with: | |
body: ${{ steps.pr-description.outputs.pull_request_description }} | |
token: ${{ secrets.GITHUB_TOKEN }} |