Skip to content

Commit

Permalink
Create JS action to verify signed commits
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Mar 2, 2022
1 parent a5da74a commit 17e50e8
Show file tree
Hide file tree
Showing 5 changed files with 12,148 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/actions/verifySignedCommits/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: 'Verify signed commits'
description: 'This action verifies that all commits in a given pull request are signed.'
inputs:
GITHUB_TOKEN:
description: 'Auth token for New Expensify Github; necessary for accessing Octokit.'
required: true
PR_NUMBER:
description: 'The pull request to verify commits on. Defaults to ${{ github.event.number }}.'
required: false

runs:
using: 'node12'
main: './index.js'
Loading

0 comments on commit 17e50e8

Please sign in to comment.