Skip to content

Rust

Rust #74

Workflow file for this run

on:
workflow_dispatch:
schedule:
- cron: '7 5 1 * *'
name: Update
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: xmc-rs/[email protected]
with:
command: install
args: svd2rust
- uses: xmc-rs/[email protected]
with:
command: install
args: form
- uses: oleksiyrudenko/gha-git-credentials@v2-latest
with:
token: '${{ secrets.GITHUB_TOKEN }}'
- run: |
rm -r src/
svd2rust -i XMC4700.svd
mkdir src
form -i lib.rs -o src/
cargo fmt
rm lib.rs
- uses: tibdex/[email protected]
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_SECRET_KEY }}
- uses: peter-evans/create-pull-request@v5
with:
branch: svd-update
commit-message: "feat: updating from newer svd2rust"
title: "feat: updating from newer svd2rust"
labels: automerge
token: ${{ steps.generate-token.outputs.token }}