Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions .github/workflows/branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build and Deploy
runs-on: ubuntu-latest
env:
GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
GH_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_BOT: ${{ secrets.SLACK_BOT }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
GOOGLE_CONTAINER_ID: ${{ secrets.GOOGLE_CONTAINER_ID }}
Expand All @@ -26,7 +26,7 @@ jobs:
yarn install
- name: Update versions from GitHub
env:
GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
GH_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
node _build_scripts/update-config-versions.js
- name: Build Docusarus project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
yarn install
- name: Update versions from GitHub
env:
GH_API_TOKEN: ${{ secrets.GH_API_TOKEN }}
GH_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
node _build_scripts/update-config-versions.js
- name: Build a dev version
Expand Down
1 change: 1 addition & 0 deletions _build_scripts/link-validator.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ const domainsToIgnore = [
'https://static.scarf.sh',
'https://www.snowflake.com',
'https://stackoverflow.com/',
'https://www.tim-kleyersburg.de/', // 403s automated requests (site loads fine in a browser); community PHP client author link
'https://towardsdatascience.com/',
'https://voyageai.com/',
'https://weaviateagents.featurebase.app',
Expand Down
Loading