Skip to content
Merged
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
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,21 @@ on:
tags:
- 'v*'
workflow_dispatch:
inputs:
bump:
description: 'Version bump type'
required: true
type: choice
options:
- patch
- minor
- major
Comment on lines +11 to +16
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

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

Marking bump as required: true changes the manual-dispatch UX: triggering workflow_dispatch now always requires selecting a bump value. If you want to preserve the previous ability to run a manual release without bumping (or to align with the tag-push behavior where inputs.bump is empty/skip), consider making it optional and setting a default (e.g., default: patch) or leaving it non-required so callers can omit it.

Copilot uses AI. Check for mistakes.

jobs:
release:
uses: netresearch/skill-repo-skill/.github/workflows/release.yml@main
with:
bump: ${{ inputs.bump }}
permissions:
id-token: write
attestations: write
contents: write
pull-requests: write
Comment on lines 23 to 25
Copy link

Copilot AI Apr 22, 2026

Choose a reason for hiding this comment

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

This change also removes id-token: write and attestations: write from the job permissions (not mentioned in the PR description). If the reusable release workflow relies on OIDC (e.g., for signing/publishing) or artifact attestations, the release may fail at runtime. Consider restoring those permissions (or explicitly documenting why they’re no longer needed) to keep the change scoped to forwarding bump.

Copilot uses AI. Check for mistakes.
Loading