Skip to content

feat(GODIET-73): ✨ add new buttons on patient layout #3

feat(GODIET-73): ✨ add new buttons on patient layout

feat(GODIET-73): ✨ add new buttons on patient layout #3

name: Update PR Description
on:
pull_request:
types: [opened, synchronize]
jobs:
update-description:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Update PR description with commit list
uses: octokit/[email protected]
with:
route: PATCH /repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}
mediaType: application/vnd.github.v3+json
body: |
${{ github.event.pull_request.body }}
## Lista de commits:
$(git log --pretty=format:"* %s (%h)" ${{ github.event.before }}..${{ github.sha }})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}