Make Docker/GitHub CLI/plugins/webapp-testing opt-in extras #6
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
| name: Issue and PR assignment | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| auto-assign-issue: | |
| if: github.event_name == 'issues' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: 'Auto-assign issue' | |
| uses: pozil/auto-assign-issue@v4.0.1 | |
| with: | |
| assignees: modem7 | |
| auto-assign-pr: | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - name: 'Auto-assign PR' | |
| uses: pozil/auto-assign-issue@v4.0.1 | |
| with: | |
| assignees: modem7 |