We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459f5bd commit 07074faCopy full SHA for 07074fa
dist/index.js
@@ -8475,6 +8475,7 @@ const githubToken = core.getInput('github-token') || '';
8475
const branch = core.getInput('branch');
8476
const users = (core.getInput('users') || '').split(',');
8477
const teams = (core.getInput('teams') || '').split(',');
8478
+const contexts = (core.getInput('contexts') || '').split(',');
8479
const protectionOn = core.getInput('protection') === 'on' ? true : false;
8480
8481
const run = async () => {
@@ -8489,7 +8490,7 @@ const run = async () => {
8489
8490
branch,
8491
required_status_checks: {
8492
strict: true,
- contexts: [],
8493
+ contexts,
8494
},
8495
enforce_admins: true,
8496
0 commit comments