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
3 changes: 3 additions & 0 deletions .claude/CLAUDE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Rules for this project

- Maintain the CHANGELOG.md
- Use least-privilege principle for GitHub Actions permissions
- Use `actions/checkout` with `persist-credentials: false`
- Pin action versions to the commit SHA
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

## Checklist

- I have updated the [CHANGELOG.md](../CHANGELOG.md) with a description of the change
3 changes: 1 addition & 2 deletions .github/workflows/ossf-scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ on:
scorecard_token:
required: true

# Declare default permissions as read only.
permissions: read-all
permissions: {}

jobs:
analysis:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-techdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ on:
aws_secret_access_key:
required: true

permissions: read-all
permissions: {}

jobs:
publish:
if: github.event.repository.visibility == 'public'
runs-on: 'ubuntu-latest'
permissions:
contents: read
steps:
- name: Set up NodeJS
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
however this project does not use Semantic Versioning and there are no releases.
Instead this file uses a date-based structure.

## 2026-01-30

### Fixed

- Replace `permissions: read-all` with explicit job-level permissions in `ossf-scorecard` and `publish-techdocs` workflows to work correctly when called from workflows with restricted permissions.

## 2026-01-23

### Added

- Add pull request template with checklist for changelog.

### Changed

- Set restrictive default token permissions for `create-release-pr`, `fix-vulnerabilities`, `chart-values`, `gitleaks`, `go-coverage`, `issue-to-customer-board`, `validate-changelog`, `validate-file-names`, and `validate-workflows` workflows.
Expand Down