Reusable GitHub Actions for the secretkeylabs organization.
Checks that a repository has a root AGENTS.md file and that it links to every nested AGENTS.md file.
- name: Check AGENTS.md links
uses: secretkeylabs/github-actions/check-agents@main| Input | Description | Required | Default |
|---|---|---|---|
working-directory |
Directory to check, relative to the workflow workspace. | No | . |
Prepends a package's pre-release installation instructions to a Pull Request description. If the PR already contains a pre-release info block, it is updated in place.
- name: Add package pre-release info
uses: secretkeylabs/github-actions/add-package-pre-release-info-to-pr@main
with:
package-name: "my-awesome-package"
version: "1.0.0-a429d137"
github-token: ${{ secrets.GITHUB_TOKEN }}
pr-number: ${{ github.event.pull_request.number }}| Input | Description | Required |
|---|---|---|
package-name |
The name of the NPM package | Yes |
version |
The pre-release version | Yes |
github-token |
A GitHub token with pull-request write access | Yes |
pr-number |
The Pull Request number | Yes |