chore: rename auto-assign workflows with bot-autoassign prefix#69
Merged
Eeshu-Yadav merged 5 commits intomasterfrom Mar 2, 2026
Merged
chore: rename auto-assign workflows with bot-autoassign prefix#69Eeshu-Yadav merged 5 commits intomasterfrom
Eeshu-Yadav merged 5 commits intomasterfrom
Conversation
Renamed workflow files to follow the new naming convention: - issue-assignment.yml → bot-autoassign-issue.yml - pr-issue-link.yml → bot-autoassign-pr-issue-link.yml - pr-reopen-reassign.yml → bot-autoassign-pr-reopen.yml - stale-pr-management.yml → bot-autoassign-stale-pr.yml Updated internal references: - sparse-checkout path: .github/actions/bot-autoassign - script path: .github/actions/bot-autoassign/__main__.py - Python version: 3.12
There was a problem hiding this comment.
Pull request overview
Updates the repository’s auto-assign GitHub Actions workflows to follow the bot-autoassign- naming/layout convention and to execute the bot code from its new location (as aligned with openwisp-utils PR #572).
Changes:
- Update sparse-checkout target to
.github/actions/bot-autoassign. - Switch bot execution from
python -m openwisp_utils.bots.auto_assign ...topython .github/actions/bot-autoassign/__main__.py .... - Bump workflow Python runtime from 3.9 to 3.12.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/bot-autoassign-stale-pr.yml | Uses new sparse-checkout/action path, runs bot via __main__.py, and updates Python version. |
| .github/workflows/bot-autoassign-pr-reopen.yml | Same updates across both jobs in the workflow (reopen + issue_comment path). |
| .github/workflows/bot-autoassign-pr-issue-link.yml | Points sparse-checkout and execution to the new bot action location and bumps Python. |
| .github/workflows/bot-autoassign-issue.yml | Points sparse-checkout and execution to the new bot action location and bumps Python. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Summary
Rename auto-assign workflow files to follow the new
bot-autoassign-naming convention, as discussed in openwisp/openwisp-utils#572.Changes
File Renames
issue-assignment.ymlbot-autoassign-issue.ymlpr-issue-link.ymlbot-autoassign-pr-issue-link.ymlpr-reopen-reassign.ymlbot-autoassign-pr-reopen.ymlstale-pr-management.ymlbot-autoassign-stale-pr.ymlInternal Updates
openwisp_utils/bots→.github/actions/bot-autoassignpython -m openwisp_utils.bots.auto_assign→python .github/actions/bot-autoassign/__main__.pyThese changes align the bot-testing-ground workflows with the updated structure in openwisp-utils PR #572.