feat: add initial code logic

This commit is contained in:
Richard Simpson
2019-09-20 15:09:58 -05:00
parent db817f6cf8
commit 200002c936
8 changed files with 5513 additions and 0 deletions

10
index.js Normal file
View File

@@ -0,0 +1,10 @@
const core = require('@actions/core');
const { exportSecrets } = require('./action');
(async () => {
try {
await core.group('Get Vault Secrets', exportSecrets);
} catch (error) {
core.setFailed(error.message);
}
})();