Merge pull request #49 from kube-rs/bump86 #59
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
# 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 | |
jobs: | |
rustfmt_nightly: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- run: cargo +nightly fmt | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: rustfmt | |
signoff: true | |
title: rustfmt | |
body: Changes from `cargo +nightly fmt`. | |
branch: rustfmt | |
# Delete branch when merged | |
delete-branch: true |