Happy little icons for workflows

bafb2cba95960bb4e55ec802722e5486f3b8802c

Wolfsblvt <wolfsblvt@gmail.com>

7 files changed, +25 -25Ignore whitespace
.github/workflows/issues-auto-manager.yml+5 -5
@@ -1,4 +1,4 @@
11name: πŸŽ―πŸ› οΈ Issues Manager
22
33on:
44 issues:
@@ -9,7 +9,7 @@ on:
99
1010jobs:
1111 label-on-content:
1212 name: Auto-🏷️ Label Issues (Based on Issueby Content)
1313 runs-on: ubuntu-latest
1414
1515 steps:
@@ -31,7 +31,7 @@ jobs:
3131 repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
3232
3333 label-on-labels:
3434 name: Auto-🏷️ Label Issues (Based on Issueby Labels)
3535 runs-on: ubuntu-latest
3636
3737 steps:
@@ -76,7 +76,7 @@ jobs:
7676 labels: 'βœ–οΈ Not Reproducible,βœ–οΈ Not A Bug'
7777
7878 remove-stale-label:
7979 name: πŸ—‘οΈ Remove Stale Label on Comment
8080 runs-on: ubuntu-latest
8181 # Only run this on new comments, to automatically remove the stale label
8282 if: github.event_name == 'issue_comment' && github.actor != 'github-actions[bot]'
@@ -93,7 +93,7 @@ jobs:
9393 labels: '⚰️ Stale,πŸ•ΈοΈ Inactive,🚏 Awaiting User Response,πŸ›‘ No Response'
9494
9595 write-auto-comments:
9696 name: πŸ’¬ Post Issue Comments Based on Labels
9797 needs: [label-on-content, label-on-labels]
9898 runs-on: ubuntu-latest
9999
.github/workflows/issues-updates-on-merge.yml+2 -2
@@ -1,4 +1,4 @@
11name: πŸŽ―πŸ”„ Update Issues on Push
22
33on:
44 push:
@@ -9,7 +9,7 @@ on:
99jobs:
1010 # This runs commits to staging/release, reading the commit messages. Check `pr-auto-manager.yml`:`update-linked-issues` for PR-linked updates.
1111 update-linked-issues:
1212 name: UpdateπŸ”— Mark Linked Issues Done on Push
1313 runs-on: ubuntu-latest
1414
1515 steps:
.github/workflows/job-close-stale.yml+4 -4
@@ -1,4 +1,4 @@
11name: πŸŽ―πŸ•’ Close Stale Issues/PRs Workflow
22
33on:
44 # Run the workflow every day
@@ -8,7 +8,7 @@ on:
88
99jobs:
1010 mark-inactivity:
1111 name: ⏳ Mark Issues/PRs without Activity
1212 runs-on: ubuntu-latest
1313
1414 steps:
@@ -41,7 +41,7 @@ jobs:
4141 exempt-pr-labels: 'πŸ“Œ Keep Open'
4242
4343 await-user-response:
4444 name: ⚠️ Mark Issues/PRs Awaiting User Response
4545 runs-on: ubuntu-latest
4646 needs: mark-inactivity
4747
@@ -68,7 +68,7 @@ jobs:
6868 exempt-issue-labels: '🚧 Alternative Exists'
6969
7070 alternative-exists:
7171 name: πŸ”„ Mark Issues with Alternative Exists
7272 runs-on: ubuntu-latest
7373 needs: await-user-response
7474
.github/workflows/on-close-handler.yml+2 -2
@@ -1,4 +1,4 @@
11name: 🎯πŸšͺ Issues/PRs On Close Handler
22
33on:
44 issues:
@@ -8,7 +8,7 @@ on:
88
99jobs:
1010 remove-labels:
1111 name: πŸ—‘οΈ Remove Pending Labels on Close
1212 runs-on: ubuntu-latest
1313
1414 steps:
.github/workflows/on-open-handler.yml+2 -2
@@ -1,4 +1,4 @@
11name: πŸŽ―πŸ“¨ Issues/PRs Open Handler
22
33on:
44 issues:
@@ -8,7 +8,7 @@ on:
88
99jobs:
1010 label-maintainer:
1111 name: 🏷️ Label if Author is a Repo Maintainer
1212 runs-on: ubuntu-latest
1313 if: contains(fromJson('["Cohee1207", "RossAscends", "Wolfsblvt"]'), github.actor)
1414
.github/workflows/pr-auto-manager.yml+8 -8
@@ -1,4 +1,4 @@
11name: πŸŽ―πŸ”€ Pull Request Manager
22
33on:
44 pull_request_target:
@@ -8,7 +8,7 @@ on:
88
99jobs:
1010 label-by-size:
1111 name: Apply🏷️ Label for PR by Size
1212 runs-on: ubuntu-latest
1313
1414 steps:
@@ -34,7 +34,7 @@ jobs:
3434 "public/lib/*"
3535
3636 label-by-branches:
37- name: Apply Labels Based on Branch Name and Target Branch
37+ name: 🏷️ Label PR by Branches
3838 runs-on: ubuntu-latest
3939 # Only label once when PR is created or branches are changed, to allow manual label removal
4040 if: github.event.action == 'opened' || (github.event.action == 'synchronize' && (github.event.changes.base || github.event.changes.head))
@@ -54,7 +54,7 @@ jobs:
5454 repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
5555
5656 label-by-files:
5757 name: Apply Labels🏷️ BasedLabel onPR Changedby Files
5858 runs-on: ubuntu-latest
5959
6060 steps:
@@ -72,7 +72,7 @@ jobs:
7272 repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
7373
7474 remove-stale-label:
7575 name: πŸ—‘οΈ Remove Stale Label on Comment
7676 runs-on: ubuntu-latest
7777 # Only runs when this is not done by the github actions bot
7878 if: github.actor != 'github-actions[bot]'
@@ -89,7 +89,7 @@ jobs:
8989 labels: '⚰️ Stale'
9090
9191 check-merge-blocking-labels:
9292 name: 🚫 Check Merge Blocking Labels
9393 needs: [label-by-branches, label-by-files]
9494 runs-on: ubuntu-latest
9595 # Run, even if the previous jobs were skipped/failed
@@ -133,7 +133,7 @@ jobs:
133133 }
134134
135135 write-auto-comments:
136136 name: πŸ’¬ Post PR Comments Based on Labels
137137 needs: [label-by-size, label-by-branches, label-by-files]
138138 runs-on: ubuntu-latest
139139 # Run, even if the previous jobs were skipped/failed
@@ -155,7 +155,7 @@ jobs:
155155
156156 # 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.
157157 update-linked-issues:
158158 name: UpdateπŸ”— Mark Linked Issues Done on Staging Merge
159159 runs-on: ubuntu-latest
160160 if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging'
161161
.github/workflows/pr-check-merge-conflicts.yaml+2 -2
@@ -1,4 +1,4 @@
11name: πŸŽ―βš”οΈ Check Merge Conflicts
22
33on:
44 # So that PRs touching the same files as the push are updated
@@ -9,7 +9,7 @@ on:
99
1010jobs:
1111 check-merge-conflicts:
1212 name: βš”οΈ Check Merge Conflicts
1313 runs-on: ubuntu-latest
1414
1515 steps: