Skip to content

Commit

Permalink
Merge pull request #1 from BrownUniversity/feature/check-keys
Browse files Browse the repository at this point in the history
Check for expired/expiring keys
  • Loading branch information
sumnerwarren authored Jun 26, 2020
2 parents 35bddac + 9e4266f commit c1f10e2
Show file tree
Hide file tree
Showing 12 changed files with 17,374 additions and 110 deletions.
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["brown", "brown/jest", "brown/prettier"],
}
16 changes: 16 additions & 0 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Lint And Test
on: push

jobs:
lint-and-test:
name: Lint/Test source code
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Install node dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
8 changes: 7 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
name: 'Check GPG Keys'
description: 'Check for expired or expiring GPG keys'
inputs:
repo-name:
description: 'repo name'
required: true
github-token:
description: 'github token for API access'
required: true
keyring-directory:
description: 'path to the directory containing the keyring file'
required: false
default: '.blackbox'
runs:
using: 'node12'
main: 'index.js'
main: 'dist/index.js'
Loading

0 comments on commit c1f10e2

Please sign in to comment.