Reorganize workflow files and names into 3 main categories: - Data: Data collection and synchronization workflows - Infrastructure: Infrastructure tasks (mirroring, forking) - Maintenance: All PR checks, labels, notifications, and maintenance tasks All workflows now have capitalized category prefixes for consistency. Also update internal workflow references to reflect new names.
28 lines
1.0 KiB
YAML
28 lines
1.0 KiB
YAML
name: "Maintenance: Welcome first-time issue 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! 🚀
|