From 73a853d64b06b1787a7731fd034a1f47c4b977ca Mon Sep 17 00:00:00 2001 From: Hugo Bernier Date: Sun, 7 Nov 2021 22:51:11 -0500 Subject: [PATCH] Create action.yml --- .github/actions/verify-author/action.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/actions/verify-author/action.yml 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'