Skip to content

Commit c90eff5

Browse files
committed
chore: drop ci checks
1 parent 96ba05f commit c90eff5

File tree

3 files changed

+4
-30
lines changed

3 files changed

+4
-30
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Check
55
on:
66
# Push to master will deploy a beta version
77
push:
8-
branches: [0.21.x]
8+
branches: [master]
99
pull_request:
1010
branches: [master]
1111

.github/workflows/release.yaml

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -43,34 +43,8 @@ jobs:
4343
custom_version: ${{ inputs.custom_version }}
4444
existing_changelog_path: CHANGELOG.md
4545

46-
# If github.ref points to a [skip ci] commit, we assume that it was added by the pre_release workflow,
47-
# which doesn't push the commit if code checks don't pass.
48-
# Otherwise, the checks will have been triggered by the `run_code_checks` workflow.
49-
wait_for_checks:
50-
name: Wait for code checks to pass
51-
runs-on: ubuntu-latest
52-
steps:
53-
- name: Checkout repository
54-
uses: actions/checkout@v4
55-
- name: Check if the head commit contains [skip ci]
56-
id: check_skip
57-
run: |
58-
if git log --format=%B -n 1 ${{ github.sha }} | head -n 1 | grep '\[skip ci\]$'; then
59-
echo 'skipped=true' >> $GITHUB_OUTPUT
60-
else
61-
echo 'skipped=false' >> $GITHUB_OUTPUT
62-
fi
63-
64-
- uses: lewagon/[email protected]
65-
if: ${{ steps.check_skip.outputs.skipped == 'false' }}
66-
with:
67-
ref: ${{ github.ref }}
68-
repo-token: ${{ secrets.GITHUB_TOKEN }}
69-
check-regexp: (Build & Test .*ubuntu.*|Test Python template support|Lint|Docs build)
70-
wait-interval: 5
71-
7246
update_changelog:
73-
needs: [release_metadata, wait_for_checks]
47+
needs: [release_metadata]
7448
name: Update changelog
7549
runs-on: ubuntu-latest
7650
outputs:

.yarnrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ plugins:
1111
gitHooksPath: .github/hooks
1212

1313
changesetBaseRefs:
14-
- 0.21.x
15-
- origin/0.21.x
14+
- 0.21.x
15+
- origin/0.21.x

0 commit comments

Comments
 (0)