Database Refresh #1
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
name: Database Refresh | |
permissions: write-all | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
index: | |
name: Parse Database Entries | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Run code | |
run: cargo run --no-default-features --features parse | |
- name: Push to GitHub | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: AHQ Store Bot | |
message: Refresh Entries |