Make all workflow names consistent and action-oriented: - Use action verb first (Announce, Auto-label, Build, Check, Clean, Help, Label, Lint, Listen, Rewrite, Scan, Sync, Welcome) - Keep names concise and descriptive - Remove unnecessary details from the name Changes: - Analyze kernel security (was: Kernel Hardening Analysis) - Announce merge (was: Announce PR merge to Discord) - Announce PR (was: Announce PR on Discord for review) - Auto-label PR (was: Automatic Pull Request Labeling) - Build PR artifacts (was: Generate Artifacts on PR if...) - Check PR assets (was: Check new board assets exist...) - Clean workflow logs (was: Clean Workflow Logs) - Sync Jira (was: Jira Sync) - Help forks (was: Forked Helper) - Label PR on approval (was: PR review labeler) - Lint scripts (was: Lint on Scripts) - Listen PR review (was: PR review listener) - Rewrite kernel configs (was: Rewrite kernel configs - same) - Scan security (was: Scorecards Security Scan) - Sync board list (was: Update Board Lists) - Sync labels (was: Sync Labels from YAML) - Sync maintainers (was: Sync maintainers status) - Sync tools (was: Update Tools in Scripts) - Welcome first-time contributor (was: Welcome first-time issue contributor) - Welcome first-time PR contributor (was: same - kept as is)
28 lines
1.0 KiB
YAML
28 lines
1.0 KiB
YAML
name: Welcome first-time contributor
|
||
|
||
on:
|
||
issues:
|
||
types: opened
|
||
|
||
jobs:
|
||
welcome-first-time-contributor:
|
||
runs-on: ubuntu-latest
|
||
permissions:
|
||
issues: write
|
||
pull-requests: write
|
||
steps:
|
||
- uses: plbstl/first-contribution@v4
|
||
with:
|
||
labels: "Good first issue"
|
||
issue-opened-msg: |
|
||
### Hey @{fc-author}! 👋
|
||
|
||
Thanks for opening your first issue with the Armbian project — we’re glad to have you here! 🧡
|
||
Your input doesn’t just help us improve the project — it benefits everyone who uses Armbian.
|
||
|
||
If you'd like to stay informed about project updates or collaborate more closely with the team,
|
||
you can optionally share some personal contact preferences at [armbian.com/update-data](https://www.armbian.com/update-data/).
|
||
This helps us keep in touch without relying solely on GitHub notifications.
|
||
|
||
Also, don’t forget to ⭐ star the repo to support the work — and welcome aboard! 🚀
|