Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
8e5eeff
update retext style guide, package.json devDependencies
Apr 26, 2024
186278e
Merge branch 'bigcommerce:main' into main
bc-andreadao Apr 26, 2024
a90da1a
npm version print
Apr 26, 2024
f55879a
npm version upgrade to latest
Apr 26, 2024
9fbf69f
only print npm version
Apr 26, 2024
6284ea2
add npm install to see if compatible with package-lock.json
Apr 26, 2024
a0f75bd
delete existing package-lock.json file
Apr 26, 2024
58cb012
update checkout version
Apr 26, 2024
a6aca60
change node version for actions to 20
Apr 26, 2024
c943d2b
change version for setup-node
Apr 26, 2024
7a3f63b
update set-up and checkout versions
Apr 26, 2024
12c07e3
remove node "uses" key for actions
Apr 26, 2024
b3449b3
what happens if use v3
Apr 26, 2024
18285f6
chnage back to v4
Apr 26, 2024
44a688b
change no-dead-urls plugin version
Apr 26, 2024
eba19c8
get changed lines
Apr 26, 2024
8fd3fd8
use env var instead of set output
Apr 26, 2024
2320929
add filename argument
Apr 26, 2024
1d6706c
loop thru each line
Apr 26, 2024
117c9a3
file path
Apr 26, 2024
f5968ef
use predefined env file
Apr 26, 2024
4e696d2
value of changed variable
Apr 26, 2024
6f4d100
ECHO
Apr 26, 2024
22685ec
echo value of changed lines
Apr 26, 2024
23135aa
change event
Apr 26, 2024
e7dcc33
Update entrypoint.sh with -diff option
bc-andreadao May 1, 2024
2e2e5a0
Update action.yml with input variables
bc-andreadao May 1, 2024
ac5985e
git diff in workflow file
May 1, 2024
dd9abae
fix incorrect input in workflow
May 1, 2024
9f46abf
change event to pull request, any branch
May 1, 2024
b0b4567
TEST add line to Store Logs API
May 1, 2024
05d118a
TEST add line to ShipperHQ doc
May 1, 2024
ef04a33
TEST add line to Tax Provider doc
May 1, 2024
df5df7f
comment out filter_mode
May 2, 2024
bf5a1eb
remove filter_mode
May 2, 2024
3df681c
TEST mess up graphql doc
May 2, 2024
8d092b9
TEST mistake right by a line
May 2, 2024
ea5ee51
add in old linter, remove new linter
May 2, 2024
1e808c5
Revert "add in old linter, remove new linter"
May 2, 2024
3a85a4c
add in filter mode
May 2, 2024
eaa7af6
TEST error next to error
May 2, 2024
2c03589
is there a difference
May 2, 2024
05e0ca3
TEST again
May 2, 2024
3427ce7
readd in json
May 2, 2024
82c17f0
change back dependencies
May 2, 2024
5e85df1
whoops
May 2, 2024
22ae171
whoops
May 2, 2024
ed236ce
whoops
May 2, 2024
4fc5bb2
undo tests
May 2, 2024
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
8 changes: 7 additions & 1 deletion .github/actions/retext-style-guide/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,15 @@ inputs:
reviewdog_flags:
description: 'Additional reviewdog flags'
default: ''
before_commit:
description: 'Commit SHA before you triggered the event'
default: '${{ github.event.before }}'
after_commit:
description: 'Commit SHA after you triggered the event'
default: '${{ github.sha }}'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'check'
color: 'blue'
color: 'blue'
3 changes: 2 additions & 1 deletion .github/actions/retext-style-guide/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ find ${GITHUB_WORKSPACE} -type f -name '*.mdx' -exec quality-docs {} + \
-fail-on-error="${INPUT_FAIL_ON_ERROR}" \
-level="${INPUT_LEVEL}" \
${INPUT_REVIEWDOG_FLAGS} \
-tee
-tee \
-diff="git diff --unified=0 ${INPUT_BEFORE_COMMIT} ${INPUT_AFTER_COMMIT}"
8 changes: 7 additions & 1 deletion .github/workflows/retext-style-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@ jobs:
name: runner / retext-style-guide
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: ./.github/actions/retext-style-guide
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
filter_mode: added
before_commit: ${{ github.event.before }}
after_commit: ${{ github.sha }}
2 changes: 1 addition & 1 deletion docs/api-docs/provider-apis/tax/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -193,4 +193,4 @@ For Tax Provider API related questions, or to request set up of a new tax provid
- [Get a Tax Provider Connection](/docs/rest-contracts/tax-app-connection#get-connection-status)
- [Delete a Tax Provider Connection](/docs/rest-contracts/tax-app-connection#delete-a-connection)
- [Update a Tax Provider Connection](/docs/rest-contracts/tax-app-connection#update-a-connection)
- [Tax Classes](/docs/rest-management/tax-classes)
- [Tax Classes](/docs/rest-management/tax-classes)
2 changes: 1 addition & 1 deletion docs/api-docs/store-logs/store-logs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -397,4 +397,4 @@ Accept: application/json
- [Store Logs Support Article](https://support.bigcommerce.com/s/article/Using-Store-Logs)

### Endpoint reference
- [Get system logs](/docs/rest-management/store-logs#get-system-logs)
- [Get system logs](/docs/rest-management/store-logs#get-system-logs)
2 changes: 1 addition & 1 deletion docs/api-docs/store-management/shipping/shipper-hq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,4 @@ Accept: application/json
* [Product Metafield](/docs/rest-catalog/products/metafields#create-a-product-metafield)
* [Variant Metafield](/docs/rest-catalog/product-variants/metafields#create-a-product-variant-metafield)
### Related articles
* [ShipperHQ](https://support.bigcommerce.com/s/article/ShipperHQ) (Knowledge Base)
* [ShipperHQ](https://support.bigcommerce.com/s/article/ShipperHQ) (Knowledge Base)
Original file line number Diff line number Diff line change
Expand Up @@ -596,4 +596,4 @@ If a merchant has not enabled product filtering, you will receive an empty array
## Resources

- [GraphQL Storefront API Overview](/docs/storefront/graphql)
- [GraphQL Storefront Playground](https://developer.bigcommerce.com/graphql-playground)
- [GraphQL Storefront Playground](https://developer.bigcommerce.com/graphql-playground)
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
"eslint-plugin-mdx": "^2.0.5"
},
"author": "Matthew Volk"
}
}