Skip to content

๐Ÿ› ๋“ค์—ฌ์“ฐ๊ธฐ ์ˆ˜์ • #4

๐Ÿ› ๋“ค์—ฌ์“ฐ๊ธฐ ์ˆ˜์ •

๐Ÿ› ๋“ค์—ฌ์“ฐ๊ธฐ ์ˆ˜์ • #4

Workflow file for this run

name: 'Auto Assign and Notify'
on:
pull_request:
types: [opened, ready_for_review]
jobs:
add-reviews:
runs-on: ubuntu-latest
steps:
- name: Auto assign reviewer
id: auto-assign
uses: kentaro-m/[email protected]

Check failure on line 13 in .github/workflows/auto_assign.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/auto_assign.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
with:
configuration-path: '.github/assign_config.yml'
# Only needed if you use something other than .github/auto_assign.yml
- name: Send Slack Notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
with:
message: >
Pull request #${{ github.event.pull_request.number }} has been assigned to @${{ steps.auto-assign.outputs.assigned_reviewers }}.