Fix broken link #1805
Workflow file for this run
This file contains 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 Maintainer | |
"on": | |
pull_request_target: | |
types: | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
jobs: | |
core: | |
name: Auto-assign Core Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-core.yml | |
distribution: | |
name: Auto-assign Distribution Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-distribution.yml | |
implementation: | |
name: Auto-assign Implementation Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-implementation.yml | |
learning: | |
name: Auto-assign Learning Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-learning.yml | |
platform: | |
name: Auto-assign Platform Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-platform.yml | |
bat: | |
name: Auto-assign Buildpack Authors' Tooling Maintainer | |
if: ${{ github.event.pull_request.assignee == null && join(github.event.pull_request.assignees) == '' }} | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: kentaro-m/[email protected] | |
with: | |
configuration-path: .github/auto-assign-bat.yml |