diff --git a/.github/workflows/issues-auto-manager.yml b/.github/workflows/issues-auto-manager.yml index a6f89e25a..b7af4c750 100644 --- a/.github/workflows/issues-auto-manager.yml +++ b/.github/workflows/issues-auto-manager.yml @@ -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 diff --git a/.github/workflows/issues-updates-on-merge.yml b/.github/workflows/issues-updates-on-merge.yml index 13a3452b8..c0d8f12f3 100644 --- a/.github/workflows/issues-updates-on-merge.yml +++ b/.github/workflows/issues-updates-on-merge.yml @@ -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: diff --git a/.github/workflows/job-close-stale.yml b/.github/workflows/job-close-stale.yml index 1d9a7de58..ceb381f39 100644 --- a/.github/workflows/job-close-stale.yml +++ b/.github/workflows/job-close-stale.yml @@ -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 diff --git a/.github/workflows/on-close-handler.yml b/.github/workflows/on-close-handler.yml index 39da98688..2491cc622 100644 --- a/.github/workflows/on-close-handler.yml +++ b/.github/workflows/on-close-handler.yml @@ -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: diff --git a/.github/workflows/on-open-handler.yml b/.github/workflows/on-open-handler.yml index 009a9efc2..1861f4167 100644 --- a/.github/workflows/on-open-handler.yml +++ b/.github/workflows/on-open-handler.yml @@ -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) diff --git a/.github/workflows/pr-auto-manager.yml b/.github/workflows/pr-auto-manager.yml index 9aefdbcf3..e672f1412 100644 --- a/.github/workflows/pr-auto-manager.yml +++ b/.github/workflows/pr-auto-manager.yml @@ -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' diff --git a/.github/workflows/pr-check-merge-conflicts.yaml b/.github/workflows/pr-check-merge-conflicts.yaml index 7f6e568f3..73b3e5896 100644 --- a/.github/workflows/pr-check-merge-conflicts.yaml +++ b/.github/workflows/pr-check-merge-conflicts.yaml @@ -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: