forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
415 changed files
with
29,951 additions
and
25,343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 22 additions & 17 deletions
39
.github/actions-scripts/check-for-enterprise-issues-by-label.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,32 @@ | ||
#!/usr/bin/env node | ||
|
||
const github = require('@actions/github') | ||
const core = require('@actions/core') | ||
import { getOctokit } from '@actions/github' | ||
import { setOutput } from '@actions/core' | ||
|
||
async function run () { | ||
async function run() { | ||
const token = process.env.GITHUB_TOKEN | ||
const octokit = github.getOctokit(token) | ||
const octokit = getOctokit(token) | ||
const query = encodeURIComponent('is:open repo:github/docs-internal is:issue') | ||
|
||
const deprecationIssues = await octokit.request(`GET /search/issues?q=${query}+label:"enterprise%20deprecation"`) | ||
const releaseIssues = await octokit.request(`GET /search/issues?q=${query}+label:"enterprise%20release"`) | ||
|
||
const deprecationIssues = await octokit.request( | ||
`GET /search/issues?q=${query}+label:"enterprise%20deprecation"` | ||
) | ||
const releaseIssues = await octokit.request( | ||
`GET /search/issues?q=${query}+label:"enterprise%20release"` | ||
) | ||
const isDeprecationIssue = deprecationIssues.data.items.length === 0 ? 'false' : 'true' | ||
const isReleaseIssue = releaseIssues.data.items.length === 0 ? 'false' : 'true' | ||
core.setOutput('deprecationIssue', isDeprecationIssue) | ||
core.setOutput('releaseIssue', isReleaseIssue) | ||
setOutput('deprecationIssue', isDeprecationIssue) | ||
setOutput('releaseIssue', isReleaseIssue) | ||
return `Set outputs deprecationIssue: ${isDeprecationIssue}, releaseIssue: ${isReleaseIssue}` | ||
} | ||
|
||
run() | ||
.then( | ||
(response) => { console.log(`Finished running: ${response}`) }, | ||
(error) => { | ||
console.log(`#ERROR# ${error}`) | ||
process.exit(1) | ||
} | ||
) | ||
run().then( | ||
(response) => { | ||
console.log(`Finished running: ${response}`) | ||
}, | ||
(error) => { | ||
console.log(`#ERROR# ${error}`) | ||
process.exit(1) | ||
} | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.