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
9 changes: 0 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
PRODUCTION_TEST_MIGRATION_DATABASE_URL: postgresql://postgres:release-administrator-password@127.0.0.1:54329/agentic_data
permissions:
contents: read
security-events: read
steps:
- uses: actions/checkout@v7
with:
Expand All @@ -37,14 +36,6 @@ jobs:
- name: Use supported npm
run: npm install --global npm@12.0.2
- run: npm ci --no-audit --no-fund
- name: Reject open dependency alerts
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
OPEN_ALERTS=$(gh api \
"repos/$GITHUB_REPOSITORY/dependabot/alerts?state=open&per_page=1" \
--jq 'length')
test "$OPEN_ALERTS" -eq 0
- name: Validate release tag
run: |
git fetch origin main:refs/remotes/origin/main
Expand Down
3 changes: 2 additions & 1 deletion docs/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ workflow.

4. Merge the release pull request to `main`.
5. Confirm CI and CodeQL pass on the merge commit.
6. Create and push an annotated tag:
6. Confirm the repository has no open Dependabot alerts.
7. Create and push an annotated tag:

```powershell
git switch main
Expand Down