-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: move crawler to own repo (#167)
* feat: move crawler to own repo * chore: move away from monorepo Co-authored-by: Peter Muessig <[email protected]>
- Loading branch information
1 parent
1364292
commit 4ff7074
Showing
79 changed files
with
118 additions
and
1,698 deletions.
There are no files selected for viewing
File renamed without changes.
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,24 @@ | ||
# Ignore specific files | ||
_config.yml | ||
CNAME | ||
|
||
# Ignore build output folders | ||
/docs/** | ||
/webapp/** | ||
|
||
# Ignore files by extension | ||
/**/*.svg | ||
/**/*.png | ||
/**/*.md | ||
|
||
# Ignore files by folders | ||
/src/font-awesome/** | ||
|
||
# Additionally ignore files for linting | ||
/**/*.html | ||
/**/*.css | ||
/**/*.json | ||
/**/*.xml | ||
/**/*.properties | ||
/**/*.yaml | ||
/**/*.yml |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,12 @@ | ||
name: build | ||
|
||
on: | ||
schedule: | ||
- cron: "50 3 * * *" # runs every day at 03:50 UTC to avoid high loads | ||
push: | ||
branches: [main] | ||
workflow_dispatch: | ||
|
||
env: | ||
HUSKY_SKIP: true | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
jobs: | ||
|
@@ -26,17 +25,12 @@ jobs: | |
- name: yarn | ||
run: | | ||
yarn | ||
- name: crawl data | ||
run: | | ||
yarn workspace crawler build | ||
- run: | | ||
yarn workspace ui build | ||
yarn build | ||
- name: Commit/Push build to docs branch | ||
run: | | ||
git config --global user.name 'marianfoo' | ||
git config --global user.email '[email protected]' | ||
git add docs -f | ||
git add packages/ui/src/model/data.json | ||
git add packages/ui/src/model/versions.json | ||
git commit -m "chore: build" | ||
git push origin HEAD:docs --force |
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,5 @@ | ||
if (process.env.HUSKY_SKIP) { | ||
process.exit(0); | ||
} else { | ||
process.exit(1); | ||
} |
File renamed without changes.
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 |
---|---|---|
@@ -1,11 +1,15 @@ | ||
# Ignore specific files | ||
_config.yml | ||
CNAME | ||
|
||
# Ignore build output folders | ||
/docs/** | ||
/webapp/** | ||
|
||
# Ignore files by extension | ||
/**/*.md | ||
/**/*.svg | ||
/**/*.png | ||
/**/*.md | ||
|
||
# Ignore folders | ||
/docs/** | ||
/packages/ui/src/font-awesome/** | ||
/packages/ui/webapp/** | ||
# Ignore files by folders | ||
/src/font-awesome/** |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.