diff --git a/.github/actions/verify-author/action.yml b/.github/actions/verify-author/action.yml new file mode 100644 index 000000000..2d604d5d5 --- /dev/null +++ b/.github/actions/verify-author/action.yml @@ -0,0 +1,9 @@ +name: 'Verify Author' +description: 'Verifies that an issue author is specified' +inputs: + issue: # change this + required: true + description: 'The issue to verify' +runs: + using: 'node12' + main: 'index.js'