Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit 7e64bb7

Browse files
committed
🔖 v2.4.0
1 parent 5348df7 commit 7e64bb7

File tree

17 files changed

+99
-77
lines changed

17 files changed

+99
-77
lines changed

‎.prettierrc.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
...require('eslint-plugin-github/prettier.config'),
2+
// ...require('eslint-plugin-github/prettier.config'),
33
printWidth: 80,
44
trailingComma: 'all',
55
}

‎package-lock.json

+42-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎prettier.config.js

-1
This file was deleted.

‎readme.md

+43-20
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,49 @@
66

77
## Scripts
88

9-
- [action-node-version](scripts/action-node-version) [![action-node-version version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Faction-node-version%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-action-node-version)
10-
> Change Node version for JavaScript GitHub Actions
11-
- [cleanup-archived-repos](scripts/cleanup-archived-repos) [![cleanup-archived-repos version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fcleanup-archived-repos%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-cleanup-archived-repos)
12-
> Close issues/PRs in archived repositories
13-
- [codeql](scripts/codeql) [![codeql version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fcodeql%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-codeql)
14-
> Add CodeQL GitHub Action workflow to repositories
15-
- [delete-forks](scripts/delete-forks) [![delete-forks version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fdelete-forks%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-delete-forks)
16-
> Delete forked repositories
17-
- [delete-repo](scripts/delete-repo) [![delete-repo version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fdelete-repo%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-delete-repo)
18-
> Delete repositories
19-
- [dependabot-config](scripts/dependabot-config) [![dependabot-config version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fdependabot-config%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-dependabot-config)
20-
> Apply [@dependabot](https://github.com/dependabot) config to repositories
21-
- [release-config](scripts/release-config) [![release-config version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Frelease-config%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-release-config)
22-
> Apply release config to repositories
23-
- [repository-labels](scripts/repository-labels) [![repository-labels version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Frepository-labels%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-repository-labels)
24-
> Sync labels across repositories
25-
- [repository-settings](scripts/repository-settings) [![repository-settings version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Frepository-settings%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-repository-settings)
26-
> Apply settings across repositories
27-
- [workflow-shas](scripts/workflow-shas) [![workflow-shas version](https://img.shields.io/github/package-json/v/stoe/octoherd-scripts?filename=scripts%2Fworkflow-shas%2Fpackage.json)](https://github.com/stoe/octoherd-scripts/pkgs/npm/octoherd-script-workflow-shas)
28-
> Replace Action versions with SHAs
9+
### [action-node-version](scripts/action-node-version)
10+
11+
> Change Node version for JavaScript GitHub Actions
12+
13+
### [cleanup-archived-repos](scripts/cleanup-archived-repos)
14+
15+
> Close issues/PRs in archived repositories
16+
17+
### [codeql](scripts/codeql)
18+
19+
> Add CodeQL GitHub Action workflow to repositories
20+
21+
### [delete-forks](scripts/delete-forks)
22+
23+
> Delete forked repositories
24+
25+
### [delete-repo](scripts/delete-repo)
26+
27+
> Delete repositories
28+
29+
### [dependabot-config](scripts/dependabot-config)
30+
31+
> Apply [@dependabot](https://github.com/dependabot) config to repositories
32+
33+
### [release-config](scripts/release-config)
34+
35+
> Apply release config to repositories
36+
37+
### [repository-labels](scripts/repository-labels)
38+
39+
> Sync labels across repositories
40+
41+
### [repository-secrets](scripts/repository-secrets)
42+
43+
> Manage repository Action secrets and variables
44+
45+
### [repository-settings](scripts/repository-settings)
46+
47+
> Apply settings across repositories
48+
49+
### [workflow-shas](scripts/workflow-shas)
50+
51+
> Replace Action versions with SHAs
2952
3053
## License
3154

‎scripts/action-node-version/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-action-node-version",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Change Node version for JavaScript GitHub Actions",
66
"keywords": [

‎scripts/cleanup-archived-repos/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-cleanup-archived-repos",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Close issues/PRs in archived repositories",
66
"keywords": [

‎scripts/codeql/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-codeql",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Add CodeQL GitHub Action workflow to repositories",
66
"keywords": [

‎scripts/common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-common",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Common scripts for my @octoherd scripts",
66
"keywords": [

‎scripts/delete-forks/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-delete-forks",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Delete forked repositories",
66
"keywords": [

‎scripts/delete-repo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-delete-repo",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Delete repositories",
66
"keywords": [

‎scripts/dependabot-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-dependabot-config",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Apply @dependabot config to repositories",
66
"keywords": [

‎scripts/release-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-release-config",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Apply release config to repositories",
66
"keywords": [

‎scripts/repository-labels/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-repository-labels",
3-
"version": "2.3.1",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Sync labels across repositories",
66
"keywords": [

‎scripts/repository-secrets/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@stoe/octoherd-script-repository-secrets",
3-
"version": "0.0.0-development",
3+
"version": "2.4.0",
44
"type": "module",
55
"description": "Manage repository Action secrets and variables",
66
"keywords": [

0 commit comments

Comments
 (0)