mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Happy little icons for workflows
This commit is contained in:
10
.github/workflows/issues-auto-manager.yml
vendored
10
.github/workflows/issues-auto-manager.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Issues Manager
|
name: 🛠️ Issues Manager
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
@@ -9,7 +9,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label-on-content:
|
label-on-content:
|
||||||
name: Auto-Label Issues (Based on Issue Content)
|
name: 🏷️ Label Issues by Content
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
label-on-labels:
|
label-on-labels:
|
||||||
name: Auto-Label Issues (Based on Issue Labels)
|
name: 🏷️ Label Issues by Labels
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -76,7 +76,7 @@ jobs:
|
|||||||
labels: '✖️ Not Reproducible,✖️ Not A Bug'
|
labels: '✖️ Not Reproducible,✖️ Not A Bug'
|
||||||
|
|
||||||
remove-stale-label:
|
remove-stale-label:
|
||||||
name: Remove Stale Label on Comment
|
name: 🗑️ Remove Stale Label on Comment
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Only run this on new comments, to automatically remove the stale label
|
# Only run this on new comments, to automatically remove the stale label
|
||||||
if: github.event_name == 'issue_comment' && github.actor != 'github-actions[bot]'
|
if: github.event_name == 'issue_comment' && github.actor != 'github-actions[bot]'
|
||||||
@@ -93,7 +93,7 @@ jobs:
|
|||||||
labels: '⚰️ Stale,🕸️ Inactive,🚏 Awaiting User Response,🛑 No Response'
|
labels: '⚰️ Stale,🕸️ Inactive,🚏 Awaiting User Response,🛑 No Response'
|
||||||
|
|
||||||
write-auto-comments:
|
write-auto-comments:
|
||||||
name: Post Issue Comments Based on Labels
|
name: 💬 Post Issue Comments Based on Labels
|
||||||
needs: [label-on-content, label-on-labels]
|
needs: [label-on-content, label-on-labels]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Update Issues on Push
|
name: 🔄 Update Issues on Push
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -9,7 +9,7 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
# This runs commits to staging/release, reading the commit messages. Check `pr-auto-manager.yml`:`update-linked-issues` for PR-linked updates.
|
# 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:
|
update-linked-issues:
|
||||||
name: Update Issues on Push
|
name: 🔗 Mark Linked Issues Done on Push
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
8
.github/workflows/job-close-stale.yml
vendored
8
.github/workflows/job-close-stale.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Close Stale Issues/PRs Workflow
|
name: 🕒 Close Stale Issues/PRs Workflow
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# Run the workflow every day
|
# Run the workflow every day
|
||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
mark-inactivity:
|
mark-inactivity:
|
||||||
name: Mark Issues/PRs without Activity
|
name: ⏳ Mark Issues/PRs without Activity
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -41,7 +41,7 @@ jobs:
|
|||||||
exempt-pr-labels: '📌 Keep Open'
|
exempt-pr-labels: '📌 Keep Open'
|
||||||
|
|
||||||
await-user-response:
|
await-user-response:
|
||||||
name: Mark Issues/PRs Awaiting User Response
|
name: ⚠️ Mark Issues/PRs Awaiting User Response
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: mark-inactivity
|
needs: mark-inactivity
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
exempt-issue-labels: '🚧 Alternative Exists'
|
exempt-issue-labels: '🚧 Alternative Exists'
|
||||||
|
|
||||||
alternative-exists:
|
alternative-exists:
|
||||||
name: Mark Issues with Alternative Exists
|
name: 🔄 Mark Issues with Alternative Exists
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: await-user-response
|
needs: await-user-response
|
||||||
|
|
||||||
|
4
.github/workflows/on-close-handler.yml
vendored
4
.github/workflows/on-close-handler.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Issues/PRs On Close Handler
|
name: 🚪 Issues/PRs On Close Handler
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
remove-labels:
|
remove-labels:
|
||||||
name: Remove Pending Labels on Close
|
name: 🗑️ Remove Pending Labels on Close
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
4
.github/workflows/on-open-handler.yml
vendored
4
.github/workflows/on-open-handler.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Issues/PRs Open Handler
|
name: 📨 Issues/PRs Open Handler
|
||||||
|
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label-maintainer:
|
label-maintainer:
|
||||||
name: Label if Author is a Repo Maintainer
|
name: 🏷️ Label if Author is a Repo Maintainer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: contains(fromJson('["Cohee1207", "RossAscends", "Wolfsblvt"]'), github.actor)
|
if: contains(fromJson('["Cohee1207", "RossAscends", "Wolfsblvt"]'), github.actor)
|
||||||
|
|
||||||
|
16
.github/workflows/pr-auto-manager.yml
vendored
16
.github/workflows/pr-auto-manager.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Pull Request Manager
|
name: 🔀 Pull Request Manager
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
label-by-size:
|
label-by-size:
|
||||||
name: Apply Label for PR Size
|
name: 🏷️ Label PR by Size
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
"public/lib/*"
|
"public/lib/*"
|
||||||
|
|
||||||
label-by-branches:
|
label-by-branches:
|
||||||
name: Apply Labels Based on Branch Name and Target Branch
|
name: 🏷️ Label PR by Branches
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Only label once when PR is created or branches are changed, to allow manual label removal
|
# 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))
|
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 }}
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
label-by-files:
|
label-by-files:
|
||||||
name: Apply Labels Based on Changed Files
|
name: 🏷️ Label PR by Files
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@@ -72,7 +72,7 @@ jobs:
|
|||||||
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
remove-stale-label:
|
remove-stale-label:
|
||||||
name: Remove Stale Label on Comment
|
name: 🗑️ Remove Stale Label on Comment
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Only runs when this is not done by the github actions bot
|
# Only runs when this is not done by the github actions bot
|
||||||
if: github.actor != 'github-actions[bot]'
|
if: github.actor != 'github-actions[bot]'
|
||||||
@@ -89,7 +89,7 @@ jobs:
|
|||||||
labels: '⚰️ Stale'
|
labels: '⚰️ Stale'
|
||||||
|
|
||||||
check-merge-blocking-labels:
|
check-merge-blocking-labels:
|
||||||
name: Check Merge Blocking Labels
|
name: 🚫 Check Merge Blocking Labels
|
||||||
needs: [label-by-branches, label-by-files]
|
needs: [label-by-branches, label-by-files]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Run, even if the previous jobs were skipped/failed
|
# Run, even if the previous jobs were skipped/failed
|
||||||
@@ -133,7 +133,7 @@ jobs:
|
|||||||
}
|
}
|
||||||
|
|
||||||
write-auto-comments:
|
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]
|
needs: [label-by-size, label-by-branches, label-by-files]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# Run, even if the previous jobs were skipped/failed
|
# 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.
|
# 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:
|
update-linked-issues:
|
||||||
name: Update Issues on Staging Merge
|
name: 🔗 Mark Linked Issues Done on Staging Merge
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging'
|
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'staging'
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
name: 🎯 Check Merge Conflicts
|
name: ⚔️ Check Merge Conflicts
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# So that PRs touching the same files as the push are updated
|
# So that PRs touching the same files as the push are updated
|
||||||
@@ -9,7 +9,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-merge-conflicts:
|
check-merge-conflicts:
|
||||||
name: Check Merge Conflicts
|
name: ⚔️ Check Merge Conflicts
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
Reference in New Issue
Block a user