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
2 changes: 1 addition & 1 deletion .github/workflows/draft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
prerelease: false
prefix: v
previous_tag_name: ${{ steps.tag.outputs.name }}
notes_strip_prefix: true
notes_prefix: "${{ github.ref_name }}-"

- name: "Process Release Draft URL"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,18 @@ jobs:
- name: "Create Tracking Tag"
uses: cssnr/update-version-tags-action@v2
with:
prefix: ""
major: false
minor: false
release: true
prefix: "${{ github.event.release.target_commitish }}-"

- name: "Update Version Tags"
id: tags
uses: cssnr/update-version-tags-action@v2
with:
ref: refs/heads/${{ env.release }}
prefix: "v"
release: true
prefix: "v"
force: true

- name: "Update Release Notes"
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
name: "Test"

# actions-up-ignore-file

on:
workflow_dispatch:
#schedule:
Expand Down Expand Up @@ -55,7 +53,7 @@ jobs:
with:
node-version: 24

- name: "Install & Build"
- name: "Install"
if: ${{ !github.event.act }}
run: |
npm ci
Expand Down
19 changes: 19 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Agent Guide

Before answering any question that involves facts about ANYTHING, you MUST output at least one Read, WebFetch, or WebSearch tool call.
If your first output is text instead of a tool call, you have failed.

GitHub Action - [action.yml](action.yml)

- `src/` is the source directory (single `index.ts` file)
- `dist/` is built by rollup, in `.gitignore`, and pushed to the `release` branch on publish

## Commands

ALWAYS use the `npm run *` command

| Command | Purpose |
| ------------------ | --------------------------------------- |
| `npm run build` | Rollup `src/index.ts` → `dist/index.js` |
| `npm run lint` | ESLint on `src/` |
| `npm run prettier` | ALWAYS RUN AFTER EDITING FILES |
Loading