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
2 changes: 1 addition & 1 deletion .github/workflows/report-repos-with-multi-admin-teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bun run report:repos-with-multi-admin-teams

- name: Manage report issue
uses: devantler-tech/actions/upsert-issue@e3a0bd51f2159079c77872080d493bc5ab9dc8bc # feat: add upsert-issue
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

If you’re standardizing action pinning, consider applying a consistent comment style across all callsites (e.g., always # vX.Y.Z or always # <action> vX.Y.Z). This avoids future churn when searching/grepping for pins and makes it easier to audit versions.

Copilot uses AI. Check for mistakes.
with:
title: "[report] Repos with Multiple Admin Teams"
body-file: ${{ steps.report.outputs.report-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-repos-with-no-admin-team.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bun run report:repos-with-no-admin-team

- name: Manage report issue
uses: devantler-tech/actions/upsert-issue@e3a0bd51f2159079c77872080d493bc5ab9dc8bc # feat: add upsert-issue
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

Same as other workflow: the inline comment now only reflects the version. If these workflows are intended to be self-explanatory, consider preserving a short purpose-oriented note alongside the pinned version so future readers understand the step at a glance.

Suggested change
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0 - create or update the report issue

Copilot uses AI. Check for mistakes.
with:
title: "[report] Repos with No Admin Team"
body-file: ${{ steps.report.outputs.report-path }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/report-repos-with-no-team.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
bun run report:repos-with-no-team

- name: Manage report issue
uses: devantler-tech/actions/upsert-issue@e3a0bd51f2159079c77872080d493bc5ab9dc8bc # feat: add upsert-issue
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0
Copy link

Copilot AI Apr 12, 2026

Choose a reason for hiding this comment

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

Consider keeping the previous descriptive comment (e.g., why this action is used / what it does) and placing the version tag in a consistent format across the repo. Right now the comment changed from a purpose/feature note to only a version label, which reduces local context when scanning workflow steps. A concrete option is to include both purpose and version in the comment (or standardize on # v2.1.0 (upsert-issue) if that’s the repo convention).

Suggested change
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # v2.1.0
uses: devantler-tech/actions/upsert-issue@4235593b654b467bb57c2d2f492b1461eab37cba # upsert-issue v2.1.0

Copilot uses AI. Check for mistakes.
with:
title: "[report] Repos with No Team Assigned"
body-file: ${{ steps.report.outputs.report-path }}
Expand Down
Loading