Skip to content

add support for CRD annotations and labels in kube-derive (#1631) #1317

add support for CRD annotations and labels in kube-derive (#1631)

add support for CRD annotations and labels in kube-derive (#1631) #1317

Workflow file for this run

# When pushed to main, run `cargo +nightly fmt` against all files 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@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- run: rustfmt +nightly --edition 2018 $(find . -type f -iname *.rs)
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: rustfmt
signoff: true
title: rustfmt
body: |
Changes from `rustfmt +nightly --edition 2018 $(find . -type f -iname *.rs)`.
branch: rustfmt
# Delete branch when merged
delete-branch: true