-
Notifications
You must be signed in to change notification settings - Fork 60.3k
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
78 changed files
with
445 additions
and
200 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,40 @@ | ||
name: Browser Tests | ||
|
||
on: [push] | ||
on: | ||
workflow_dispatch: | ||
push: | ||
|
||
jobs: | ||
see_if_should_skip: | ||
runs-on: ubuntu-latest | ||
# Map a step output to a job output | ||
outputs: | ||
should_skip: ${{ steps.skip_check.outputs.should_skip }} | ||
steps: | ||
- id: skip_check | ||
uses: fkirc/skip-duplicate-actions@a12175f6209d4805b5a163d723270be2a0dc7b36 | ||
with: | ||
cancel_others: 'false' | ||
github_token: ${{ github.token }} | ||
paths: '["assets/**", "content/**", "data/**", "includes/**", "javascripts/**", "jest-puppeteer.config.js", "jest.config.js", "layouts/**", "lib/**", "middleware/**", "package-lock.json", "package.json", "server.js", "translations/**", "webpack.config.js"]' | ||
build: | ||
needs: see_if_should_skip | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Install | ||
uses: ianwalter/puppeteer@3.0.0 | ||
# Each of these ifs needs to be repeated at each step to make sure the required check still runs | ||
# Even if if doesn't do anything | ||
- if: ${{ needs.see_if_should_skip.outputs.should_skip == 'false' }} | ||
name: Checkout | ||
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 | ||
|
||
- if: ${{ needs.see_if_should_skip.outputs.should_skip == 'false' }} | ||
name: Install | ||
uses: ianwalter/puppeteer@12728ddef82390d1ecd4732fb543f62177392fbb | ||
with: | ||
args: npm ci | ||
- name: Test | ||
uses: ianwalter/puppeteer@3.0.0 | ||
|
||
- if: ${{ needs.see_if_should_skip.outputs.should_skip == 'false' }} | ||
name: Test | ||
uses: ianwalter/puppeteer@12728ddef82390d1ecd4732fb543f62177392fbb | ||
with: | ||
args: npm run browser-test | ||
args: npm run browser-test |
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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: First responder docs-content | ||
on: | ||
pull_request: | ||
types: [reopened, opened, ready_for_review, unlabeled] | ||
|
||
jobs: | ||
first-responder-triage: | ||
if: github.repository == 'github/docs-internal' && github.event.pull_request.draft == false && github.event.action != 'unlabeled' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check if the event originated from a team member | ||
uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d | ||
id: set-result | ||
with: | ||
github-token: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}} | ||
result-encoding: string | ||
script: | | ||
const repoName = context.payload.repository.name | ||
const ownerName = context.payload.repository.owner.login | ||
const issueNumber = (context.eventName === "issues") ? context.payload.issue.number : context.payload.number | ||
const updatedIssueInformation = await github.issues.get({ | ||
owner: ownerName, | ||
repo: repoName, | ||
issue_number: issueNumber | ||
}) | ||
const teamMembers = await github.request( | ||
`/orgs/github/teams/docs/members` | ||
) | ||
const logins = teamMembers.data.map(member => member.login) | ||
if (logins.some(login => login === updatedIssueInformation.data.user.login)) { | ||
console.log(`This issue or pull request was authored by a member of the github/docs team.`) | ||
return 'true' | ||
} | ||
console.log(`This issue or pull request was authored by an external contributor.`) | ||
return 'false' | ||
- name: Label external contributor pull requests with docs-content-fr | ||
uses: rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e | ||
if: steps.set-result.outputs.result == 'false' | ||
with: | ||
repo-token: "${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }}" | ||
add-labels: "docs-content-fr" | ||
- name: Triage to FR PR project column | ||
uses: rachmari/actions-add-new-issue-to-column@1a459ef92308ba7c9c9dc2fcdd72f232495574a9 | ||
if: steps.set-result.outputs.result == 'false' | ||
with: | ||
action-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} | ||
project-url: "https://github.com/orgs/github/projects/1367" | ||
column-name: "Docs-internal external contributor PRs" | ||
|
||
first-responder-label-removed: | ||
if: github.event.label.name == 'docs-content-fr' && github.event.action == 'unlabeled' | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Dump GitHub context | ||
env: | ||
GITHUB_CONTEXT: ${{ toJson(github) }} | ||
run: echo "$GITHUB_CONTEXT" | ||
- name: Remove card from project | ||
uses: actions/github-script@44b873bc975058192f5279ebe7579496381f575d | ||
with: | ||
github-token: ${{secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES}} | ||
result-encoding: string | ||
script: | | ||
const issueToRemove = context.payload.number | ||
const cards = await github.projects.listCards({ | ||
column_id: 11130889 | ||
}) | ||
cards.data.forEach(card => { | ||
if (card.content_url) { | ||
const cardIssueNumber = parseInt(card.content_url.split('/').pop(), 10) | ||
if (cardIssueNumber === issueToRemove) { | ||
const cards = github.projects.deleteCard({ | ||
card_id: card.id | ||
}) | ||
} | ||
} | ||
}) |
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
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.