Skip to content

The hero section alignment becomes inconsistent on normal/laptop screen sizes. While the layout looks fine in full-screen mode, in normal view the entire hero content appears pushed too far downward, creating excessive empty space at the top. #161

The hero section alignment becomes inconsistent on normal/laptop screen sizes. While the layout looks fine in full-screen mode, in normal view the entire hero content appears pushed too far downward, creating excessive empty space at the top.

The hero section alignment becomes inconsistent on normal/laptop screen sizes. While the layout looks fine in full-screen mode, in normal view the entire hero content appears pushed too far downward, creating excessive empty space at the top. #161

name: Auto Assign Issue Author
on:
issues:
types: [opened]
jobs:
auto-assign:
runs-on: ubuntu-latest
permissions:
issues: write # Required for assigning issues
steps:
- name: Assign issue to creator
uses: actions/github-script@v7
with:
script: |
const issueCreator = context.payload.issue.user.login;
const issueNumber = context.payload.issue.number;
await github.rest.issues.addAssignees({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber,
assignees: [issueCreator],
});
console.log(`Assigned issue #${issueNumber} to @${issueCreator}`);