-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a "cleanup-checks" trigger action (#11354)
Co-authored-by: phryneas <[email protected]>
- Loading branch information
Showing
5 changed files
with
75 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: Clean up Prettier, Size-limit, and Api-Extractor | ||
|
||
on: | ||
pull_request: | ||
pull_request_review: | ||
types: [submitted, edited] | ||
|
||
jobs: | ||
add_cleanup_label: | ||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-a-workflow-when-a-pull-request-is-approved | ||
if: | | ||
github.repository == 'apollographql/apollo-client' && | ||
github.event.review.state == 'APPROVED' && | ||
contains(github.event.pull_request.labels.*.name, 'auto-cleanup') == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
- name: add label | ||
uses: actions-ecosystem/action-add-labels@v1 | ||
with: | ||
labels: auto-cleanup | ||
|
||
cleanup: | ||
if: | | ||
github.repository == 'apollographql/apollo-client' && | ||
contains(github.event.pull_request.labels.*.name, 'auto-cleanup') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Install dependencies (with cache) | ||
uses: bahmutov/npm-install@v1 | ||
|
||
- name: Run build | ||
run: npm run build | ||
|
||
- name: Run Api-Extractor | ||
run: npm run extract-api | ||
env: | ||
CI: "false" | ||
|
||
- name: Run prettier | ||
run: npm run format | ||
|
||
- name: Update size-limit | ||
run: npm run update-size-limits | ||
|
||
- name: Commit changes back | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Clean up Prettier, Size-limit, and Api-Extractor" | ||
push_options: "" | ||
skip_dirty_check: false |
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,4 @@ | ||
{ | ||
"dist/apollo-client.min.cjs": 37975, | ||
"import { ApolloClient, InMemoryCache, HttpLink } from \"dist/index.js\" (production)": 32019 | ||
} |
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