Release v3.3.0 – Modular deployment overhaul, local CertStream server, SSL monitoring, and SearxNG migration #45
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
| name: Auto-assign Issues and PRs | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened, reopened] | |
| jobs: | |
| auto-assign: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: 'Auto-assign issue' | |
| if: github.event_name == 'issues' | |
| uses: pozil/auto-assign-issue@v2 | |
| with: | |
| assignees: ygalnezri | |
| - name: 'Auto-assign PR' | |
| if: github.event_name == 'pull_request' | |
| uses: pozil/auto-assign-issue@v2 | |
| with: | |
| assignees: ygalnezri |