Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/aw/actions-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@
"version": "v5.2.0",
"sha": "be666c2fcd27ec809703dec50e508c2fdc7f6654"
},
"actions/setup-node@v6.2.0": {
"repo": "actions/setup-node",
"version": "v6.2.0",
"sha": "6044e13b5dc448c55e2357c09f80417699197238"
},
"actions/setup-node@v6.3.0": {
"repo": "actions/setup-node",
"version": "v6.3.0",
Expand Down Expand Up @@ -100,6 +105,11 @@
"version": "v6.19.2",
"sha": "10e90e3645eae34f1e60eeb005ba3a3d33f178e8"
},
"docker/login-action@v3.7.0": {
"repo": "docker/login-action",
"version": "v3.7.0",
"sha": "c94ce9fb468520275223c153574b00df6fe4bcc9"
},
"docker/login-action@v4": {
"repo": "docker/login-action",
"version": "v4",
Expand All @@ -110,6 +120,11 @@
"version": "v5.10.0",
"sha": "c299e40c65443455700f0fdfc63efafe5b349051"
},
"docker/setup-buildx-action@v3.12.0": {
"repo": "docker/setup-buildx-action",
"version": "v3.12.0",
"sha": "8d2750c68a42422c14e847fe6c8ac0403b4cbd6f"
},
"docker/setup-buildx-action@v4": {
"repo": "docker/setup-buildx-action",
"version": "v4",
Expand All @@ -125,6 +140,11 @@
"version": "v4.32.5",
"sha": "9c6c5ab400c838ab09eec30bfeded23893cf60cc"
},
"github/stale-repos@v9.0.1": {
"repo": "github/stale-repos",
"version": "v9.0.1",
"sha": "86c425f3b9ad6696e3f967c7f8fa5ccc1e59a7bc"
},
"github/stale-repos@v9.0.2": {
"repo": "github/stale-repos",
"version": "v9.0.2",
Expand Down
585 changes: 585 additions & 0 deletions .github/workflows/ace-editor.lock.yml

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions .github/workflows/ace-editor.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: ACE Editor Session
description: Generates an ACE editor session link when invoked with /ace command on pull request comments
on:
slash_command:
name: ace
events: [pull_request_comment]
strict: false
permissions:
pull-requests: read
issues: read
jobs:
post_ace_link:
runs-on: ubuntu-latest
needs: [activation]
if: needs.activation.outputs.activated == 'true'
permissions:
pull-requests: write
issues: write
steps:
- name: Post ACE editor session link
uses: actions/github-script@v8
with:
script: |
const prNumber = context.payload.issue.number;
const repo = context.repo.repo;
const owner = context.repo.owner;
const actor = context.actor;
const sessionId = `${owner}-${repo}-pr${prNumber}`;
const aceUrl = `https://ace.com/session/${sessionId}`;

await github.rest.issues.createComment({
owner,
repo,
issue_number: prNumber,
body: `👋 Hey @${actor}! Here's your ACE editor session link for this pull request:\n\n🔗 **${aceUrl}**\n\nCopy and paste this link into Slack to invite your teammates into the session! 🚀`,
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description states this workflow posts a “friendly reply inviting teammates to join via Slack”, but the source workflow text hardcodes “Copy and paste this link into Slack” and doesn’t allow customizing the destination. If you want this to be reusable across teams/orgs, consider making the destination wording configurable (e.g., via a variable) or generalize the message (e.g., “share this link with teammates”).

Suggested change
body: `👋 Hey @${actor}! Here's your ACE editor session link for this pull request:\n\n🔗 **${aceUrl}**\n\nCopy and paste this link into Slack to invite your teammates into the session! 🚀`,
body: `👋 Hey @${actor}! Here's your ACE editor session link for this pull request:\n\n🔗 **${aceUrl}**\n\nShare this link with your teammates to invite them into the session! 🚀`,

Copilot uses AI. Check for mistakes.
});
---

Classic action that generates an ACE editor session link on pull request comment slash command.
26 changes: 13 additions & 13 deletions .github/workflows/agent-performance-analyzer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions .github/workflows/agent-persona-explorer.lock.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/workflows/agentics-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ jobs:

- name: Upload secret validation report
if: always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: secret-validation-report
path: secret-validation-report.md
Expand Down
Loading