Add the bin/ directory as a path for the blacken.yml workflow - #147
Open
mcdonnnj wants to merge 1 commit into
Open
Add the bin/ directory as a path for the blacken.yml workflow#147mcdonnnj wants to merge 1 commit into
bin/ directory as a path for the blacken.yml workflow#147mcdonnnj wants to merge 1 commit into
Conversation
The `blacken.yml` workflow should trigger for any Python code changes. Since the console scripts in the `bin/` directory do not have a ".py" extension the workflow will need this path to correctly trigger.
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request updates the blacken.yml GitHub Actions workflow so that changes to repository console scripts under bin/ will trigger the black formatting workflow on pull_request events.
Changes:
- Add
bin/**to thepull_request.pathsfilter in.github/workflows/blacken.yml.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
jsf9k
approved these changes
Mar 25, 2026
dav3r
approved these changes
Mar 26, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🗣 Description
This pull request adds the contents of the
bin/directory as a path used when triggered by apull_requestevent in theblacken.ymlworkflow.💭 Motivation and context
While working on #146 I realized that changes to the console scripts in the
bin/directory would not trigger theblacken.ymlworkflow as currently configured. Changes to these files should trigger the workflow, so I am rectifying that oversight.🧪 Testing
👀
✅ Pre-approval checklist