Skip to content

Commit db1c463

Browse files
committed
docs: move dev information into contribution guide
1 parent 697ae3d commit db1c463

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

Diff for: .github/CONTRIBUTING.md renamed to CONTRIBUTING.md

+18
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,21 @@
2323

2424
* Ensure the PR description clearly describes the problem and solution.
2525
Include the relevant issue number if applicable.
26+
27+
## Development of this action
28+
29+
1. Install [act](https://github.com/nektos/act#installation)
30+
2. Make a symlink for `act` to work properly: `ln -s . golangci-lint-action`
31+
3. Install dependencies: `npm install`
32+
4. Build: `npm run build`
33+
5. Run `npm run local` after any change to test it
34+
35+
### Releases
36+
37+
```bash
38+
npm version <major | minor | patch> -m "Upgrade to %s"
39+
```
40+
41+
- https://docs.npmjs.com/cli/v11/commands/npm-version
42+
43+
The "major tag" (ex: `v6`) should be deleted and then recreated manually.

Diff for: README.md

-18
Original file line numberDiff line numberDiff line change
@@ -539,21 +539,3 @@ Inside our action, we perform 3 steps:
539539
GitHub matches keys by prefix if we have no exact match for the primary cache.
540540

541541
This scheme is basic and needs improvements. Pull requests and ideas are welcome.
542-
543-
## Development of this action
544-
545-
1. Install [act](https://github.com/nektos/act#installation)
546-
2. Make a symlink for `act` to work properly: `ln -s . golangci-lint-action`
547-
3. Install dependencies: `npm install`
548-
4. Build: `npm run build`
549-
5. Run `npm run local` after any change to test it
550-
551-
### Releases
552-
553-
```bash
554-
npm version <major | minor | patch> -m "Upgrade to %s"
555-
```
556-
557-
- https://docs.npmjs.com/cli/v11/commands/npm-version
558-
559-
The "major tag" (ex: `v6`) should be deleted and then recreated manually.

0 commit comments

Comments
 (0)