Skip to content

printer ラベルの全体数を修正 #200

printer ラベルの全体数を修正

printer ラベルの全体数を修正 #200

Workflow file for this run

name: PR bot
on:
pull_request
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 }}