-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run auto download daily for specific manufacturers #708
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Run auto download | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you offset the time to mid-day or something, so it doesn't trigger same time as the regular weekly one? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Moved to 12:00 |
||
|
||
env: | ||
# comma separate values, no spaces | ||
MANUFACTURERS_TO_PROCESS: "inovelli" | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
run-autodl: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: pnpm/action-setup@v4 | ||
with: | ||
version: 9 | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: https://registry.npmjs.org/ | ||
cache: pnpm | ||
|
||
- name: Install dependencies | ||
run: pnpm i --frozen-lockfile | ||
|
||
- name: Build | ||
run: pnpm run build | ||
|
||
- name: Run Autodl | ||
uses: actions/github-script@v7 | ||
env: | ||
NODE_EXTRA_CA_CERTS: cacerts.pem | ||
with: | ||
script: | | ||
const {runAutodl} = await import("${{ github.workspace }}/dist/ghw_run_autodl.js") | ||
|
||
await runAutodl(github, core, context, "$MANUFACTURERS_TO_PROCESS") | ||
|
||
- name: Commit changes | ||
run: | | ||
git config --global user.name 'github-actions[bot]' | ||
git config --global user.email 'github-actions[bot]@users.noreply.github.com' | ||
git add . | ||
git commit -m "Autodl update" || echo 'Nothing to commit' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
so we can easily differentiate the two. |
||
git push |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Run daily auto download