Happy little icons for workflows

This commit is contained in:
Wolfsblvt
2025-03-14 21:34:48 +01:00
parent f607c3bc0d
commit bafb2cba95
7 changed files with 25 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
name: 🎯 Issues Manager
name: 🛠️ Issues Manager
on:
issues:
@@ -9,7 +9,7 @@ on:
jobs:
label-on-content:
name: Auto-Label Issues (Based on Issue Content)
name: 🏷️ Label Issues by Content
runs-on: ubuntu-latest
steps:
@@ -31,7 +31,7 @@ jobs:
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
label-on-labels:
name: Auto-Label Issues (Based on Issue Labels)
name: 🏷️ Label Issues by Labels
runs-on: ubuntu-latest
steps:
@@ -76,7 +76,7 @@ jobs:
labels: '✖️ Not Reproducible,✖️ Not A Bug'
remove-stale-label:
name: Remove Stale Label on Comment
name: 🗑️ Remove Stale Label on Comment
runs-on: ubuntu-latest
# Only run this on new comments, to automatically remove the stale label
if: github.event_name == 'issue_comment' && github.actor != 'github-actions[bot]'
@@ -93,7 +93,7 @@ jobs:
labels: '⚰️ Stale,🕸️ Inactive,🚏 Awaiting User Response,🛑 No Response'
write-auto-comments:
name: Post Issue Comments Based on Labels
name: 💬 Post Issue Comments Based on Labels
needs: [label-on-content, label-on-labels]
runs-on: ubuntu-latest

View File

@@ -1,4 +1,4 @@
name: 🎯 Update Issues on Push
name: 🔄 Update Issues on Push
on:
push:
@@ -9,7 +9,7 @@ on:
jobs:
# This runs commits to staging/release, reading the commit messages. Check `pr-auto-manager.yml`:`update-linked-issues` for PR-linked updates.
update-linked-issues:
name: Update Issues on Push
name: 🔗 Mark Linked Issues Done on Push
runs-on: ubuntu-latest
steps:

View File

@@ -1,4 +1,4 @@
name: 🎯 Close Stale Issues/PRs Workflow
name: 🕒 Close Stale Issues/PRs Workflow
on:
# Run the workflow every day
@@ -8,7 +8,7 @@ on:
jobs:
mark-inactivity:
name: Mark Issues/PRs without Activity
name: Mark Issues/PRs without Activity
runs-on: ubuntu-latest
steps:
@@ -41,7 +41,7 @@ jobs:
exempt-pr-labels: '📌 Keep Open'
await-user-response:
name: Mark Issues/PRs Awaiting User Response
name: ⚠️ Mark Issues/PRs Awaiting User Response
runs-on: ubuntu-latest
needs: mark-inactivity
@@ -68,7 +68,7 @@ jobs:
exempt-issue-labels: '🚧 Alternative Exists'
alternative-exists:
name: Mark Issues with Alternative Exists
name: 🔄 Mark Issues with Alternative Exists
runs-on: ubuntu-latest
needs: await-user-response

View File

@@ -1,4 +1,4 @@
name: 🎯 Issues/PRs On Close Handler
name: 🚪 Issues/PRs On Close Handler
on:
issues:
@@ -8,7 +8,7 @@ on:
jobs:
remove-labels:
name: Remove Pending Labels on Close
name: 🗑️ Remove Pending Labels on Close
runs-on: ubuntu-latest
steps:

View File

@@ -1,4 +1,4 @@
name: 🎯 Issues/PRs Open Handler
name: 📨 Issues/PRs Open Handler
on:
issues:
@@ -8,7 +8,7 @@ on:
jobs:
label-maintainer:
name: Label if Author is a Repo Maintainer
name: 🏷️ Label if Author is a Repo Maintainer
runs-on: ubuntu-latest
if: contains(fromJson('["Cohee1207", "RossAscends", "Wolfsblvt"]'), github.actor)

View File

@@ -1,4 +1,4 @@
name: 🎯 Pull Request Manager
name: 🔀 Pull Request Manager
on:
pull_request_target:
@@ -8,7 +8,7 @@ on:
jobs:
label-by-size:
name: Apply Label for PR Size
name: 🏷️ Label PR by Size
runs-on: ubuntu-latest
steps:
@@ -34,7 +34,7 @@ jobs:
"public/lib/*"
label-by-branches:
name: Apply Labels Based on Branch Name and Target Branch
name: 🏷️ Label PR by Branches
runs-on: ubuntu-latest
# Only label once when PR is created or branches are changed, to allow manual label removal
if: github.event.action == 'opened' || (github.event.action == 'synchronize' && (github.event.changes.base || github.event.changes.head))
@@ -54,7 +54,7 @@ jobs:
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
label-by-files:
name: Apply Labels Based on Changed Files
name: 🏷️ Label PR by Files
runs-on: ubuntu-latest
steps:
@@ -72,7 +72,7 @@ jobs:
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
remove-stale-label:
name: Remove Stale Label on Comment
name: 🗑️ Remove Stale Label on Comment
runs-on: ubuntu-latest
# Only runs when this is not done by the github actions bot
if: github.actor != 'github-actions[bot]'
@@ -89,7 +89,7 @@ jobs:
labels: '⚰️ Stale'
check-merge-blocking-labels:
name: Check Merge Blocking Labels
name: 🚫 Check Merge Blocking Labels
needs: [label-by-branches, label-by-files]
runs-on: ubuntu-latest
# Run, even if the previous jobs were skipped/failed
@@ -133,7 +133,7 @@ jobs:
}
write-auto-comments:
name: Post PR Comments Based on Labels
name: 💬 Post PR Comments Based on Labels
needs: [label-by-size, label-by-branches, label-by-files]
runs-on: ubuntu-latest
# Run, even if the previous jobs were skipped/failed
@@ -155,7 +155,7 @@ jobs:
# This runs on merged PRs to staging, reading the PR body and directly linked issues. Check `issues-updates-on-merge.yml`:`update-linked-issues` for commit-based updates.
update-linked-issues:
name: Update Issues on Staging Merge
name: 🔗 Mark Linked Issues Done on Staging Merge
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging'

View File

@@ -1,4 +1,4 @@
name: 🎯 Check Merge Conflicts
name: ⚔️ Check Merge Conflicts
on:
# So that PRs touching the same files as the push are updated
@@ -9,7 +9,7 @@ on:
jobs:
check-merge-conflicts:
name: Check Merge Conflicts
name: ⚔️ Check Merge Conflicts
runs-on: ubuntu-latest
steps: