Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI docs change diff check #21558

Merged
merged 4 commits into from
Jan 26, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
docsChange: ${{ steps.docs-change.outputs.DOCS_CHANGE }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 25

- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- run: yarn install --frozen-lockfile --check-files
- run: node run-tests.js --timings --write-timings -g 1/1
Expand Down Expand Up @@ -136,6 +139,8 @@ jobs:
YARN_COMPRESSION_LEVEL: '0'
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 25

- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'not-docs-only-change')
id: docs-change
Expand Down Expand Up @@ -164,6 +169,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 25

- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'not-docs-only-change')
id: docs-change
Expand All @@ -187,6 +194,8 @@ jobs:

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 25

- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'not-docs-only-change')
id: docs-change
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/cancel.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Cancel
on:
pull_request_target:
branches-ignore:
branches:
# don't run cancel job for branches named canary until
# it no longer cancels the main canary branches jobs
- canary
- '**'
- '!canary'
types:
- edited
- synchronize
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pull_request_stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 25

- run: echo ::set-output name=DOCS_CHANGE::$(node skip-docs-change.js echo 'not-docs-only-change')
id: docs-change
- uses: ./.github/actions/next-stats-action
Expand Down
2 changes: 1 addition & 1 deletion skip-docs-change.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function main() {
await exec('git fetch origin canary')

const { stdout: changedFilesOutput } = await exec(
'git diff origin/canary --name-only'
'git diff origin/canary... --name-only'
)
const changedFiles = changedFilesOutput
.split('\n')
Expand Down