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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @amcheste
21 changes: 4 additions & 17 deletions .github/workflows/monthly-dependency-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,24 +98,11 @@ jobs:
git checkout -b "$BRANCH"
git push origin "$BRANCH"

printf '## Monthly dependency patch — v%s\n\nThis PR was opened automatically. It bumps the patch version to capture\n**%s Dependabot update(s)** merged to `develop` since the last release.\n\n## What to do\n1. Review the dependency commits included in this release\n2. Merge this PR into `develop`\n3. Promote `develop`→`main` via CLI merge (or run `/publish-release`)\n4. Push the tag to trigger the release pipeline\n\n> **Note:** CI will not auto-run on this PR due to GitHub token restrictions.\n> All dependency changes were individually validated by CI when Dependabot\n> merged them to `develop`. Trigger CI manually if you want an extra check.\n' \
"${NEW_VERSION}" "${DEP_COUNT}" > /tmp/pr-body.md

gh pr create \
--base develop \
--head "$BRANCH" \
--title "chore: release v${NEW_VERSION} (monthly dependency patch)" \
--body "$(cat <<EOF
## Monthly dependency patch — v${NEW_VERSION}

This PR was opened automatically. It bumps the patch version to capture
**${DEP_COUNT} Dependabot update(s)** merged to \`develop\` since the last release.

## What to do
1. Review the dependency commits included in this release
2. Merge this PR into \`develop\`
3. Open the \`develop\`→\`main\` release PR (or run \`/publish-release\`)
4. Push the tag to trigger the release pipeline

> **Note:** CI will not auto-run on this PR due to GitHub token restrictions.
> All dependency changes were individually validated by CI when Dependabot
> merged them to \`develop\`. Trigger CI manually if you want an extra check.
EOF
)"
--body-file /tmp/pr-body.md
3 changes: 2 additions & 1 deletion .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
generateSarif: "1"

- uses: github/codeql-action/upload-sarif@5c8a8a642e79153f5d047b10ec1cba1d1cc65699 # v3
if: always() && github.event_name != 'pull_request'
if: always() && github.ref == 'refs/heads/main'
continue-on-error: true
with:
sarif_file: semgrep.sarif
5 changes: 4 additions & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
schedule:
- cron: '30 1 * * 1' # Every Monday at 01:30 UTC
push:
branches: [main, develop]
branches: [main]
workflow_dispatch:

permissions: read-all
Expand All @@ -14,6 +14,7 @@ jobs:
analysis:
name: Scorecard Analysis
runs-on: ubuntu-latest
continue-on-error: true # Scorecard requires a public repo — fails silently on private repos
permissions:
security-events: write
id-token: write
Expand All @@ -38,5 +39,7 @@ jobs:
retention-days: 5

- uses: github/codeql-action/upload-sarif@5c8a8a642e79153f5d047b10ec1cba1d1cc65699 # v4
if: github.ref == 'refs/heads/main'
continue-on-error: true
with:
sarif_file: results.sarif
Loading