Skip to content
Permalink
Browse files

Update CI docs change diff check (#21558)

* Update CI docs change diff check

* Increse fetch depth for merge base detecting

* Update cancel branches config
  • Loading branch information
ijjk committed Jan 26, 2021
1 parent e1fe28c commit cca20004cbe1246536792faef4e3c81988d1d313
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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
@@ -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')

0 comments on commit cca2000

Please sign in to comment.