push-sentinel 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +12 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -83,6 +83,18 @@ npx --yes --prefer-online push-sentinel@latest uninstall
83
83
 
84
84
  Your original `pre-push` hook is restored automatically.
85
85
 
86
+ ## GitHub Actions
87
+
88
+ Want to enforce secret scanning across your team or org? Use the [GitHub Action](https://github.com/Pmaind/push-sentinel-action):
89
+
90
+ ```yaml
91
+ - uses: Pmaind/push-sentinel-action@v1
92
+ env:
93
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
94
+ ```
95
+
96
+ Blocks PRs with HIGH severity findings and posts a comment with details.
97
+
86
98
  ## Details
87
99
 
88
100
  - Scans only the commits being pushed — not your entire history
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "push-sentinel",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Warns you if secrets are in your git diff before push.",
5
5
  "bin": {
6
6
  "push-sentinel": "bin/cli.js"