Skip to content

Commit

Permalink
docs: move dev information into contribution guide
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Feb 9, 2025
1 parent 697ae3d commit db1c463
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 18 additions & 0 deletions .github/CONTRIBUTING.md → CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,21 @@

* Ensure the PR description clearly describes the problem and solution.
Include the relevant issue number if applicable.

## Development of this action

1. Install [act](https://github.com/nektos/act#installation)
2. Make a symlink for `act` to work properly: `ln -s . golangci-lint-action`
3. Install dependencies: `npm install`
4. Build: `npm run build`
5. Run `npm run local` after any change to test it

### Releases

```bash
npm version <major | minor | patch> -m "Upgrade to %s"
```

- https://docs.npmjs.com/cli/v11/commands/npm-version

The "major tag" (ex: `v6`) should be deleted and then recreated manually.
18 changes: 0 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,21 +539,3 @@ Inside our action, we perform 3 steps:
GitHub matches keys by prefix if we have no exact match for the primary cache.

This scheme is basic and needs improvements. Pull requests and ideas are welcome.

## Development of this action

1. Install [act](https://github.com/nektos/act#installation)
2. Make a symlink for `act` to work properly: `ln -s . golangci-lint-action`
3. Install dependencies: `npm install`
4. Build: `npm run build`
5. Run `npm run local` after any change to test it

### Releases

```bash
npm version <major | minor | patch> -m "Upgrade to %s"
```

- https://docs.npmjs.com/cli/v11/commands/npm-version

The "major tag" (ex: `v6`) should be deleted and then recreated manually.

0 comments on commit db1c463

Please sign in to comment.