feat(core): add AdmissionRequest::to_cel_request() for VAP CEL bridgi… #1463
This file contains hidden or 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
| # When pushed to main, run `cargo +nightly fmt --all` and open a PR. | |
| name: rustfmt | |
| on: | |
| push: | |
| # Limit to `main` because this action creates a PR | |
| branches: | |
| - main | |
| paths: | |
| - '**.rs' | |
| - '**.yml' | |
| jobs: | |
| rustfmt_nightly: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@nightly | |
| with: | |
| components: rustfmt | |
| - run: cargo +nightly fmt --all | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v8 | |
| with: | |
| commit-message: rustfmt | |
| signoff: true | |
| title: rustfmt | |
| body: | | |
| Changes from `cargo +nightly fmt --all`. | |
| branch: rustfmt | |
| # Delete branch when merged | |
| delete-branch: true |