We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e90ecaa commit b17cc87Copy full SHA for b17cc87
1 file changed
index.js
@@ -1,7 +1,6 @@
1
const core = require('@actions/core');
2
const github = require('@actions/github');
3
const { NodeSSH } = require('node-ssh');
4
-// http request to our server to /check-github-sponsorship POST
5
const axios = require('axios');
6
7
const ssh = new NodeSSH();
@@ -28,7 +27,6 @@ async function run() {
28
27
await console.log(`Target: ${target}`);
29
await console.log(`SHA: ${sha}`);
30
31
- // let githubRepoOwner = github.context.repository.full_name.split('/')[0];
32
let githubRepoOwner = github.context.payload.repository.owner.login;
33
await console.log('Checking if the user is a sponsor [' + githubRepoOwner + ']');
34
0 commit comments