chore(deps): bump the python group across 1 directory with 7 updates #303
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
--- | |
# .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 |