Skip to content

chore(deps): bump the python group across 1 directory with 8 updates #316

chore(deps): bump the python group across 1 directory with 8 updates

chore(deps): bump the python group across 1 directory with 8 updates #316

Workflow file for this run

---
# .github/workflows/auto-author-assign.yml
name: Peek At Changelog Info
# yamllint disable-line rule:truthy
on:
- pull_request
jobs:
changelog-peek:
name: Changeset Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Get Change Info
uses: chizovation/[email protected]
id: get-changelog-entry
- name: Show Change Info
shell: bash
# yamllint disable rule:line-length
run: |
cat <<'EOInfo' >> $GITHUB_STEP_SUMMARY
## Last Change Entry
```markdown
${{ steps.get-changelog-entry.outputs.last-change-entry }}
```
EOInfo
- name: Fail If Empty
if: steps.get-changelog-entry.outputs.last-change-entry == ''
run: exit