There was an error while loading. Please reload this page.
1 parent 5736a83 commit 03c8ad4Copy full SHA for 03c8ad4
1 file changed
.github/workflows/node-keys.yml
@@ -0,0 +1,24 @@
1
+name: Node.js Release Key Check
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - keys/node.keys
7
+ - .github/node-keys.yml
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ if: github.repository_owner == 'nodejs'
16
17
+ steps:
18
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
19
20
+ - name: Run automation script
21
+ run: ./update-keys.sh
22
23
+ - name: Ensure no git changes
24
+ run: git diff --exit-code
0 commit comments