chore: release prep for v1.3.0 #33
Workflow file for this run
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
# .github/workflows/auto-assign.yml | |
# | |
# Copyright © 2025 Network Pro Strategies (Network Pro™) | |
# SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later | |
# This file is part of Network Pro | |
# | |
# This workflow will auto-assign an issue or PR to a specific user | |
# when a new issue or PR is opened. | |
name: Auto Assign | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened, edited, synchronize, reopened] | |
permissions: | |
issues: write | |
contents: read | |
pull-requests: write | |
jobs: | |
auto-assign: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: 'Auto-assign issue or PR' | |
uses: pozil/auto-assign-issue@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
assignees: SunDevil311 | |
numOfAssignee: 1 | |
allowSelfAssign: true |