Skip to content

/serve 提供画面に備考欄の内容を表示 #57

/serve 提供画面に備考欄の内容を表示

/serve 提供画面に備考欄の内容を表示 #57

Workflow file for this run

name: Assign creator
on:
pull_request:
types: ["opened"]
permissions:
pull-requests: write
repository-projects: read
jobs:
assign:
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' && github.event.pull_request.user.login != 'renovate[bot]' && toJSON(github.event.pull_request.assignees) == '[]' }}
runs-on: ubuntu-latest
timeout-minutes: 1
steps:
- run: gh pr edit "$PULL_NUMBER" --repo "$REPOSITORY" --add-assignee "$CREATOR"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
PULL_NUMBER: ${{ github.event.pull_request.number }}
CREATOR: ${{ github.event.pull_request.user.login }}