Skip to content

Update workflows and correct .lighthouserc.mjs #62

Update workflows and correct .lighthouserc.mjs

Update workflows and correct .lighthouserc.mjs #62

Workflow file for this run

# .github/workflows/auto-assign.yml
#
# 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]
jobs:
auto-assign:
runs-on: ubuntu-24.04
permissions:
issues: write
pull-requests: write
steps:
- name: "Auto-assign issue or PR"
uses: pozil/auto-assign-issue@v2
with:
repo-token: ${{ secrets.GH_PAT }}
assignees: SunDevil311
numOfAssignee: 1
allowSelfAssign: true