Skip to content

Commit c1f10e2

Browse files
authored
Merge pull request #1 from BrownUniversity/feature/check-keys
Check for expired/expiring keys
2 parents 35bddac + 9e4266f commit c1f10e2

File tree

12 files changed

+17374
-110
lines changed

12 files changed

+17374
-110
lines changed

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["brown", "brown/jest", "brown/prettier"],
3+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Lint And Test
2+
on: push
3+
4+
jobs:
5+
lint-and-test:
6+
name: Lint/Test source code
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout source
10+
uses: actions/checkout@v2
11+
- name: Install node dependencies
12+
run: npm ci
13+
- name: Lint
14+
run: npm run lint
15+
- name: Test
16+
run: npm run test

action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
name: 'Check GPG Keys'
22
description: 'Check for expired or expiring GPG keys'
33
inputs:
4+
repo-name:
5+
description: 'repo name'
6+
required: true
7+
github-token:
8+
description: 'github token for API access'
9+
required: true
410
keyring-directory:
511
description: 'path to the directory containing the keyring file'
612
required: false
713
default: '.blackbox'
814
runs:
915
using: 'node12'
10-
main: 'index.js'
16+
main: 'dist/index.js'

0 commit comments

Comments
 (0)