Skip to content

ci: build main + fix README status badge #1

ci: build main + fix README status badge

ci: build main + fix README status badge #1

Workflow file for this run

# Sets codejanovic as ASSIGNEE on every PR (reviewer handled by .github/CODEOWNERS).
name: Auto-assign
on:
pull_request:
types: [opened, reopened]
permissions:
pull-requests: write
jobs:
assign:
if: github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
assignees: ['codejanovic'],
});