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
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ on:
- v*.*.*

permissions:
contents: write
contents: read
Copy link

Copilot AI Jun 12, 2025

Choose a reason for hiding this comment

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

The global permissions block uses mixed syntaxes, which could lead to configuration issues. Please refactor to a consistent mapping format for clarity and reliability.

Suggested change
contents: read
contents:
read

Copilot uses AI. Check for mistakes.

concurrency:
group: release

jobs:
create-release:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Clone the repository
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ on:
- edited

permissions:
contents: write
pull-requests: write
contents: read
Copy link

Copilot AI Jun 12, 2025

Choose a reason for hiding this comment

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

The global permissions block is mixing list item syntax with mapping syntax. Consider unifying the format (preferably using mapping syntax) to avoid potential YAML parsing or misconfiguration issues.

Copilot uses AI. Check for mistakes.

concurrency:
group: versioning

jobs:
actions-tagger:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: Actions-R-Us/actions-tagger@330ddfac760021349fef7ff62b372f2f691c20fb # v2.0.3
Loading