diff options
| author | Raul Alimbekov <[email protected]> | 2025-12-16 09:05:22 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-16 09:05:22 +0300 |
| commit | c9a04b4b732b7a3b696eb8223664c1a7942b1875 (patch) | |
| tree | 6dbe5c02e66eed8d8762f13f95afd24f8db2b38c /.github | |
| parent | cde24a3ef1117653ba5ed4184102b33f745782fb (diff) | |
| parent | 5ae6e060ec1c90561719aabdc29d5b6e7b8b0a82 (diff) | |
Merge branch 'main' into main
Diffstat (limited to '.github')
| -rwxr-xr-x | .github/ci/book.sh | 2 | ||||
| -rwxr-xr-x | .github/ci/build-nightly.sh | 2 | ||||
| -rwxr-xr-x | .github/ci/build-xtensa.sh | 4 | ||||
| -rwxr-xr-x | .github/ci/build.sh | 2 | ||||
| -rwxr-xr-x | .github/ci/doc.sh | 4 | ||||
| -rwxr-xr-x | .github/ci/janitor.sh | 2 | ||||
| -rwxr-xr-x | .github/ci/rustfmt.sh | 2 | ||||
| -rw-r--r-- | .github/workflows/changelog.yml | 724 |
8 files changed, 371 insertions, 371 deletions
diff --git a/.github/ci/book.sh b/.github/ci/book.sh index 6c300bf09..a39f0dac7 100755 --- a/.github/ci/book.sh +++ b/.github/ci/book.sh | |||
| @@ -9,7 +9,7 @@ set -euxo pipefail | |||
| 9 | make -C docs | 9 | make -C docs |
| 10 | 10 | ||
| 11 | export KUBECONFIG=/ci/secrets/kubeconfig.yml | 11 | export KUBECONFIG=/ci/secrets/kubeconfig.yml |
| 12 | POD=$(kubectl -n embassy get po -l app=website -o jsonpath={.items[0].metadata.name}) | 12 | POD=$(kubectl get po -l app=website -o jsonpath={.items[0].metadata.name}) |
| 13 | 13 | ||
| 14 | mkdir -p build | 14 | mkdir -p build |
| 15 | mv docs/book build/book | 15 | mv docs/book build/book |
diff --git a/.github/ci/build-nightly.sh b/.github/ci/build-nightly.sh index 8cca1b445..04fbd2353 100755 --- a/.github/ci/build-nightly.sh +++ b/.github/ci/build-nightly.sh | |||
| @@ -23,7 +23,7 @@ fi | |||
| 23 | hashtime restore /ci/cache/filetime.json || true | 23 | hashtime restore /ci/cache/filetime.json || true |
| 24 | hashtime save /ci/cache/filetime.json | 24 | hashtime save /ci/cache/filetime.json |
| 25 | 25 | ||
| 26 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev 676e6d602bf016dc71f1e98f2c7f191d7bd20707 | 26 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev c60400e213f7eb0296581183140ec147dd7a848b |
| 27 | 27 | ||
| 28 | ./ci-nightly.sh | 28 | ./ci-nightly.sh |
| 29 | 29 | ||
diff --git a/.github/ci/build-xtensa.sh b/.github/ci/build-xtensa.sh index dbd2f7ffc..cc56adb26 100755 --- a/.github/ci/build-xtensa.sh +++ b/.github/ci/build-xtensa.sh | |||
| @@ -14,7 +14,7 @@ export PATH=$CARGO_HOME/bin:$PATH | |||
| 14 | export CARGO_NET_GIT_FETCH_WITH_CLI=true | 14 | export CARGO_NET_GIT_FETCH_WITH_CLI=true |
| 15 | 15 | ||
| 16 | cargo install espup --locked | 16 | cargo install espup --locked |
| 17 | espup install --toolchain-version 1.88.0.0 | 17 | espup install --toolchain-version 1.90.0.0 |
| 18 | 18 | ||
| 19 | # Restore lockfiles | 19 | # Restore lockfiles |
| 20 | if [ -f /ci/cache/lockfiles.tar ]; then | 20 | if [ -f /ci/cache/lockfiles.tar ]; then |
| @@ -25,7 +25,7 @@ fi | |||
| 25 | hashtime restore /ci/cache/filetime.json || true | 25 | hashtime restore /ci/cache/filetime.json || true |
| 26 | hashtime save /ci/cache/filetime.json | 26 | hashtime save /ci/cache/filetime.json |
| 27 | 27 | ||
| 28 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev 676e6d602bf016dc71f1e98f2c7f191d7bd20707 | 28 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev c60400e213f7eb0296581183140ec147dd7a848b |
| 29 | 29 | ||
| 30 | ./ci-xtensa.sh | 30 | ./ci-xtensa.sh |
| 31 | 31 | ||
diff --git a/.github/ci/build.sh b/.github/ci/build.sh index d5e0e0bd2..cd3006c49 100755 --- a/.github/ci/build.sh +++ b/.github/ci/build.sh | |||
| @@ -28,7 +28,7 @@ fi | |||
| 28 | hashtime restore /ci/cache/filetime.json || true | 28 | hashtime restore /ci/cache/filetime.json || true |
| 29 | hashtime save /ci/cache/filetime.json | 29 | hashtime save /ci/cache/filetime.json |
| 30 | 30 | ||
| 31 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev 676e6d602bf016dc71f1e98f2c7f191d7bd20707 | 31 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev c60400e213f7eb0296581183140ec147dd7a848b |
| 32 | 32 | ||
| 33 | ./ci.sh | 33 | ./ci.sh |
| 34 | 34 | ||
diff --git a/.github/ci/doc.sh b/.github/ci/doc.sh index dab47e86d..85eed9f80 100755 --- a/.github/ci/doc.sh +++ b/.github/ci/doc.sh | |||
| @@ -12,11 +12,11 @@ export CARGO_TARGET_DIR=/ci/cache/target | |||
| 12 | export PATH=$CARGO_HOME/bin:$PATH | 12 | export PATH=$CARGO_HOME/bin:$PATH |
| 13 | mv rust-toolchain-nightly.toml rust-toolchain.toml | 13 | mv rust-toolchain-nightly.toml rust-toolchain.toml |
| 14 | 14 | ||
| 15 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev 676e6d602bf016dc71f1e98f2c7f191d7bd20707 | 15 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev c60400e213f7eb0296581183140ec147dd7a848b |
| 16 | 16 | ||
| 17 | cargo embassy-devtool doc -o webroot | 17 | cargo embassy-devtool doc -o webroot |
| 18 | 18 | ||
| 19 | export KUBECONFIG=/ci/secrets/kubeconfig.yml | 19 | export KUBECONFIG=/ci/secrets/kubeconfig.yml |
| 20 | POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) | 20 | POD=$(kubectl get po -l app=docserver -o jsonpath={.items[0].metadata.name}) |
| 21 | kubectl cp webroot/crates $POD:/data | 21 | kubectl cp webroot/crates $POD:/data |
| 22 | kubectl cp webroot/static $POD:/data | 22 | kubectl cp webroot/static $POD:/data |
diff --git a/.github/ci/janitor.sh b/.github/ci/janitor.sh index 305c6b227..9679308f2 100755 --- a/.github/ci/janitor.sh +++ b/.github/ci/janitor.sh | |||
| @@ -9,7 +9,7 @@ export CARGO_HOME=/ci/cache/cargo | |||
| 9 | export CARGO_TARGET_DIR=/ci/cache/target | 9 | export CARGO_TARGET_DIR=/ci/cache/target |
| 10 | export PATH=$CARGO_HOME/bin:$PATH | 10 | export PATH=$CARGO_HOME/bin:$PATH |
| 11 | 11 | ||
| 12 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev 676e6d602bf016dc71f1e98f2c7f191d7bd20707 | 12 | cargo install --git https://github.com/embassy-rs/cargo-embassy-devtool --locked --rev c60400e213f7eb0296581183140ec147dd7a848b |
| 13 | 13 | ||
| 14 | cargo embassy-devtool check-crlf | 14 | cargo embassy-devtool check-crlf |
| 15 | cargo embassy-devtool check-manifest | 15 | cargo embassy-devtool check-manifest |
diff --git a/.github/ci/rustfmt.sh b/.github/ci/rustfmt.sh index 369239cfe..7aaf93234 100755 --- a/.github/ci/rustfmt.sh +++ b/.github/ci/rustfmt.sh | |||
| @@ -9,4 +9,4 @@ export CARGO_HOME=/ci/cache/cargo | |||
| 9 | export CARGO_TARGET_DIR=/ci/cache/target | 9 | export CARGO_TARGET_DIR=/ci/cache/target |
| 10 | mv rust-toolchain-nightly.toml rust-toolchain.toml | 10 | mv rust-toolchain-nightly.toml rust-toolchain.toml |
| 11 | 11 | ||
| 12 | find . -name '*.rs' -not -path '*target*' | xargs rustfmt --check --skip-children --unstable-features --edition 2021 | 12 | find . -name '*.rs' -not -path '*target*' | xargs rustfmt --check --skip-children --unstable-features --edition 2024 |
diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 8ee143cad..0cb66ded5 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml | |||
| @@ -1,362 +1,362 @@ | |||
| 1 | name: Changelog check | 1 | # name: Changelog check |
| 2 | 2 | # | |
| 3 | on: | 3 | # on: |
| 4 | pull_request: | 4 | # pull_request: |
| 5 | # We will not track changes for the following packages/directories. | 5 | # # We will not track changes for the following packages/directories. |
| 6 | paths-ignore: | 6 | # paths-ignore: |
| 7 | - "/examples/" | 7 | # - "/examples/" |
| 8 | - "/docs/" | 8 | # - "/docs/" |
| 9 | - "/out/" | 9 | # - "/out/" |
| 10 | - "/tests/" | 10 | # - "/tests/" |
| 11 | - "/release/" | 11 | # - "/release/" |
| 12 | - "/cyw43-firmware/" | 12 | # - "/cyw43-firmware/" |
| 13 | # Run on labeled/unlabeled in addition to defaults to detect | 13 | # # Run on labeled/unlabeled in addition to defaults to detect |
| 14 | # adding/removing skip-changelog labels. | 14 | # # adding/removing skip-changelog labels. |
| 15 | types: [opened, reopened, labeled, unlabeled, synchronize] | 15 | # types: [opened, reopened, labeled, unlabeled, synchronize] |
| 16 | 16 | # | |
| 17 | jobs: | 17 | # jobs: |
| 18 | changelog: | 18 | # changelog: |
| 19 | runs-on: ubuntu-latest | 19 | # runs-on: ubuntu-latest |
| 20 | 20 | # | |
| 21 | steps: | 21 | # steps: |
| 22 | - name: Checkout sources | 22 | # - name: Checkout sources |
| 23 | uses: actions/checkout@v4 | 23 | # uses: actions/checkout@v4 |
| 24 | 24 | # | |
| 25 | - name: Check which package is modified | 25 | # - name: Check which package is modified |
| 26 | uses: dorny/paths-filter@v3 | 26 | # uses: dorny/paths-filter@v3 |
| 27 | id: changes | 27 | # id: changes |
| 28 | with: | 28 | # with: |
| 29 | filters: | | 29 | # filters: | |
| 30 | cyw43: | 30 | # cyw43: |
| 31 | - 'cyw43/**' | 31 | # - 'cyw43/**' |
| 32 | cyw43-pio: | 32 | # cyw43-pio: |
| 33 | - 'cyw43-pio/**' | 33 | # - 'cyw43-pio/**' |
| 34 | embassy-boot: | 34 | # embassy-boot: |
| 35 | - 'embassy-boot/**' | 35 | # - 'embassy-boot/**' |
| 36 | embassy-boot-nrf: | 36 | # embassy-boot-nrf: |
| 37 | - 'embassy-boot-nrf/**' | 37 | # - 'embassy-boot-nrf/**' |
| 38 | embassy-boot-rp: | 38 | # embassy-boot-rp: |
| 39 | - 'embassy-boot-rp/**' | 39 | # - 'embassy-boot-rp/**' |
| 40 | embassy-boot-stm32: | 40 | # embassy-boot-stm32: |
| 41 | - 'embassy-boot-stm32/**' | 41 | # - 'embassy-boot-stm32/**' |
| 42 | embassy-embedded-hal: | 42 | # embassy-embedded-hal: |
| 43 | - 'embassy-embedded-hal/**' | 43 | # - 'embassy-embedded-hal/**' |
| 44 | embassy-executor: | 44 | # embassy-executor: |
| 45 | - 'embassy-executor/**' | 45 | # - 'embassy-executor/**' |
| 46 | embassy-executor-macros: | 46 | # embassy-executor-macros: |
| 47 | - 'embassy-executor-macros/**' | 47 | # - 'embassy-executor-macros/**' |
| 48 | embassy-executor-timer-queue: | 48 | # embassy-executor-timer-queue: |
| 49 | - 'embassy-executor-timer-queue/**' | 49 | # - 'embassy-executor-timer-queue/**' |
| 50 | embassy-futures: | 50 | # embassy-futures: |
| 51 | - 'embassy-futures/**' | 51 | # - 'embassy-futures/**' |
| 52 | embassy-imxrt: | 52 | # embassy-imxrt: |
| 53 | - 'embassy-imxrt/**' | 53 | # - 'embassy-imxrt/**' |
| 54 | embassy-mspm0: | 54 | # embassy-mspm0: |
| 55 | - 'embassy-mspm0/**' | 55 | # - 'embassy-mspm0/**' |
| 56 | embassy-net: | 56 | # embassy-net: |
| 57 | - 'embassy-net/**' | 57 | # - 'embassy-net/**' |
| 58 | embassy-net-adin1110: | 58 | # embassy-net-adin1110: |
| 59 | - 'embassy-net-adin1110/**' | 59 | # - 'embassy-net-adin1110/**' |
| 60 | embassy-net-driver: | 60 | # embassy-net-driver: |
| 61 | - 'embassy-net-driver/**' | 61 | # - 'embassy-net-driver/**' |
| 62 | embassy-net-driver-channel: | 62 | # embassy-net-driver-channel: |
| 63 | - 'embassy-net-driver-channel/**' | 63 | # - 'embassy-net-driver-channel/**' |
| 64 | embassy-net-enc28j60: | 64 | # embassy-net-enc28j60: |
| 65 | - 'embassy-net-enc28j60/**' | 65 | # - 'embassy-net-enc28j60/**' |
| 66 | embassy-net-esp-hosted: | 66 | # embassy-net-esp-hosted: |
| 67 | - 'embassy-net-esp-hosted/**' | 67 | # - 'embassy-net-esp-hosted/**' |
| 68 | embassy-net-nrf91: | 68 | # embassy-net-nrf91: |
| 69 | - 'embassy-net-nrf91/**' | 69 | # - 'embassy-net-nrf91/**' |
| 70 | embassy-net-ppp: | 70 | # embassy-net-ppp: |
| 71 | - 'embassy-net-ppp/**' | 71 | # - 'embassy-net-ppp/**' |
| 72 | embassy-net-tuntap: | 72 | # embassy-net-tuntap: |
| 73 | - 'embassy-net-tuntap/**' | 73 | # - 'embassy-net-tuntap/**' |
| 74 | embassy-net-wiznet: | 74 | # embassy-net-wiznet: |
| 75 | - 'embassy-net-wiznet/**' | 75 | # - 'embassy-net-wiznet/**' |
| 76 | embassy-nrf: | 76 | # embassy-nrf: |
| 77 | - 'embassy-nrf/**' | 77 | # - 'embassy-nrf/**' |
| 78 | embassy-nxp: | 78 | # embassy-nxp: |
| 79 | - 'embassy-nxp/**' | 79 | # - 'embassy-nxp/**' |
| 80 | embassy-rp: | 80 | # embassy-rp: |
| 81 | - 'embassy-rp/**' | 81 | # - 'embassy-rp/**' |
| 82 | embassy-stm32: | 82 | # embassy-stm32: |
| 83 | - 'embassy-stm32/**' | 83 | # - 'embassy-stm32/**' |
| 84 | embassy-stm32-wpan: | 84 | # embassy-stm32-wpan: |
| 85 | - 'embassy-stm32-wpan/**' | 85 | # - 'embassy-stm32-wpan/**' |
| 86 | embassy-sync: | 86 | # embassy-sync: |
| 87 | - 'embassy-sync/**' | 87 | # - 'embassy-sync/**' |
| 88 | embassy-time: | 88 | # embassy-time: |
| 89 | - 'embassy-time/**' | 89 | # - 'embassy-time/**' |
| 90 | embassy-time-driver: | 90 | # embassy-time-driver: |
| 91 | - 'embassy-time-driver/**' | 91 | # - 'embassy-time-driver/**' |
| 92 | embassy-time-queue-utils: | 92 | # embassy-time-queue-utils: |
| 93 | - 'embassy-time-queue-utils/**' | 93 | # - 'embassy-time-queue-utils/**' |
| 94 | embassy-usb: | 94 | # embassy-usb: |
| 95 | - 'embassy-usb/**' | 95 | # - 'embassy-usb/**' |
| 96 | embassy-usb-dfu: | 96 | # embassy-usb-dfu: |
| 97 | - 'embassy-usb-dfu/**' | 97 | # - 'embassy-usb-dfu/**' |
| 98 | embassy-usb-driver: | 98 | # embassy-usb-driver: |
| 99 | - 'embassy-usb-driver/**' | 99 | # - 'embassy-usb-driver/**' |
| 100 | embassy-usb-logger: | 100 | # embassy-usb-logger: |
| 101 | - 'embassy-usb-logger/**' | 101 | # - 'embassy-usb-logger/**' |
| 102 | embassy-usb-synopsys-otg: | 102 | # embassy-usb-synopsys-otg: |
| 103 | - 'embassy-usb-synopsys-otg/**' | 103 | # - 'embassy-usb-synopsys-otg/**' |
| 104 | - name: Check that changelog updated (cyw43) | 104 | # - name: Check that changelog updated (cyw43) |
| 105 | if: steps.changes.outputs.cyw43 == 'true' | 105 | # if: steps.changes.outputs.cyw43 == 'true' |
| 106 | uses: dangoslen/changelog-enforcer@v3 | 106 | # uses: dangoslen/changelog-enforcer@v3 |
| 107 | with: | 107 | # with: |
| 108 | changeLogPath: cyw43/CHANGELOG.md | 108 | # changeLogPath: cyw43/CHANGELOG.md |
| 109 | skipLabels: "skip-changelog" | 109 | # skipLabels: "skip-changelog" |
| 110 | missingUpdateErrorMessage: "Please add a changelog entry in the cyw43/CHANGELOG.md file." | 110 | # missingUpdateErrorMessage: "Please add a changelog entry in the cyw43/CHANGELOG.md file." |
| 111 | - name: Check that changelog updated (cyw43-pio) | 111 | # - name: Check that changelog updated (cyw43-pio) |
| 112 | if: steps.changes.outputs.cyw43-pio == 'true' | 112 | # if: steps.changes.outputs.cyw43-pio == 'true' |
| 113 | uses: dangoslen/changelog-enforcer@v3 | 113 | # uses: dangoslen/changelog-enforcer@v3 |
| 114 | with: | 114 | # with: |
| 115 | changeLogPath: cyw43-pio/CHANGELOG.md | 115 | # changeLogPath: cyw43-pio/CHANGELOG.md |
| 116 | skipLabels: "skip-changelog" | 116 | # skipLabels: "skip-changelog" |
| 117 | missingUpdateErrorMessage: "Please add a changelog entry in the cyw43-pio/CHANGELOG.md file." | 117 | # missingUpdateErrorMessage: "Please add a changelog entry in the cyw43-pio/CHANGELOG.md file." |
| 118 | - name: Check that changelog updated (embassy-boot) | 118 | # - name: Check that changelog updated (embassy-boot) |
| 119 | if: steps.changes.outputs.embassy-boot == 'true' | 119 | # if: steps.changes.outputs.embassy-boot == 'true' |
| 120 | uses: dangoslen/changelog-enforcer@v3 | 120 | # uses: dangoslen/changelog-enforcer@v3 |
| 121 | with: | 121 | # with: |
| 122 | changeLogPath: embassy-boot/CHANGELOG.md | 122 | # changeLogPath: embassy-boot/CHANGELOG.md |
| 123 | skipLabels: "skip-changelog" | 123 | # skipLabels: "skip-changelog" |
| 124 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot/CHANGELOG.md file." | 124 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot/CHANGELOG.md file." |
| 125 | - name: Check that changelog updated (embassy-boot-nrf) | 125 | # - name: Check that changelog updated (embassy-boot-nrf) |
| 126 | if: steps.changes.outputs.embassy-boot-nrf == 'true' | 126 | # if: steps.changes.outputs.embassy-boot-nrf == 'true' |
| 127 | uses: dangoslen/changelog-enforcer@v3 | 127 | # uses: dangoslen/changelog-enforcer@v3 |
| 128 | with: | 128 | # with: |
| 129 | changeLogPath: embassy-boot-nrf/CHANGELOG.md | 129 | # changeLogPath: embassy-boot-nrf/CHANGELOG.md |
| 130 | skipLabels: "skip-changelog" | 130 | # skipLabels: "skip-changelog" |
| 131 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-nrf/CHANGELOG.md file." | 131 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-nrf/CHANGELOG.md file." |
| 132 | - name: Check that changelog updated (embassy-boot-rp) | 132 | # - name: Check that changelog updated (embassy-boot-rp) |
| 133 | if: steps.changes.outputs.embassy-boot-rp == 'true' | 133 | # if: steps.changes.outputs.embassy-boot-rp == 'true' |
| 134 | uses: dangoslen/changelog-enforcer@v3 | 134 | # uses: dangoslen/changelog-enforcer@v3 |
| 135 | with: | 135 | # with: |
| 136 | changeLogPath: embassy-boot-rp/CHANGELOG.md | 136 | # changeLogPath: embassy-boot-rp/CHANGELOG.md |
| 137 | skipLabels: "skip-changelog" | 137 | # skipLabels: "skip-changelog" |
| 138 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-rp/CHANGELOG.md file." | 138 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-rp/CHANGELOG.md file." |
| 139 | - name: Check that changelog updated (embassy-boot-stm32) | 139 | # - name: Check that changelog updated (embassy-boot-stm32) |
| 140 | if: steps.changes.outputs.embassy-boot-stm32 == 'true' | 140 | # if: steps.changes.outputs.embassy-boot-stm32 == 'true' |
| 141 | uses: dangoslen/changelog-enforcer@v3 | 141 | # uses: dangoslen/changelog-enforcer@v3 |
| 142 | with: | 142 | # with: |
| 143 | changeLogPath: embassy-boot-stm32/CHANGELOG.md | 143 | # changeLogPath: embassy-boot-stm32/CHANGELOG.md |
| 144 | skipLabels: "skip-changelog" | 144 | # skipLabels: "skip-changelog" |
| 145 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-stm32/CHANGELOG.md file." | 145 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-boot-stm32/CHANGELOG.md file." |
| 146 | - name: Check that changelog updated (embassy-embedded-hal) | 146 | # - name: Check that changelog updated (embassy-embedded-hal) |
| 147 | if: steps.changes.outputs.embassy-embedded-hal == 'true' | 147 | # if: steps.changes.outputs.embassy-embedded-hal == 'true' |
| 148 | uses: dangoslen/changelog-enforcer@v3 | 148 | # uses: dangoslen/changelog-enforcer@v3 |
| 149 | with: | 149 | # with: |
| 150 | changeLogPath: embassy-embedded-hal/CHANGELOG.md | 150 | # changeLogPath: embassy-embedded-hal/CHANGELOG.md |
| 151 | skipLabels: "skip-changelog" | 151 | # skipLabels: "skip-changelog" |
| 152 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-embedded-hal/CHANGELOG.md file." | 152 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-embedded-hal/CHANGELOG.md file." |
| 153 | - name: Check that changelog updated (embassy-executor) | 153 | # - name: Check that changelog updated (embassy-executor) |
| 154 | if: steps.changes.outputs.embassy-executor == 'true' | 154 | # if: steps.changes.outputs.embassy-executor == 'true' |
| 155 | uses: dangoslen/changelog-enforcer@v3 | 155 | # uses: dangoslen/changelog-enforcer@v3 |
| 156 | with: | 156 | # with: |
| 157 | changeLogPath: embassy-executor/CHANGELOG.md | 157 | # changeLogPath: embassy-executor/CHANGELOG.md |
| 158 | skipLabels: "skip-changelog" | 158 | # skipLabels: "skip-changelog" |
| 159 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor/CHANGELOG.md file." | 159 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor/CHANGELOG.md file." |
| 160 | - name: Check that changelog updated (embassy-executor-macros) | 160 | # - name: Check that changelog updated (embassy-executor-macros) |
| 161 | if: steps.changes.outputs.embassy-executor-macros == 'true' | 161 | # if: steps.changes.outputs.embassy-executor-macros == 'true' |
| 162 | uses: dangoslen/changelog-enforcer@v3 | 162 | # uses: dangoslen/changelog-enforcer@v3 |
| 163 | with: | 163 | # with: |
| 164 | changeLogPath: embassy-executor/CHANGELOG.md | 164 | # changeLogPath: embassy-executor/CHANGELOG.md |
| 165 | skipLabels: "skip-changelog" | 165 | # skipLabels: "skip-changelog" |
| 166 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor/CHANGELOG.md file." | 166 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor/CHANGELOG.md file." |
| 167 | - name: Check that changelog updated (embassy-executor-timer-queue) | 167 | # - name: Check that changelog updated (embassy-executor-timer-queue) |
| 168 | if: steps.changes.outputs.embassy-executor-timer-queue == 'true' | 168 | # if: steps.changes.outputs.embassy-executor-timer-queue == 'true' |
| 169 | uses: dangoslen/changelog-enforcer@v3 | 169 | # uses: dangoslen/changelog-enforcer@v3 |
| 170 | with: | 170 | # with: |
| 171 | changeLogPath: embassy-executor-timer-queue/CHANGELOG.md | 171 | # changeLogPath: embassy-executor-timer-queue/CHANGELOG.md |
| 172 | skipLabels: "skip-changelog" | 172 | # skipLabels: "skip-changelog" |
| 173 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor-timer-queue/CHANGELOG.md file." | 173 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-executor-timer-queue/CHANGELOG.md file." |
| 174 | - name: Check that changelog updated (embassy-futures) | 174 | # - name: Check that changelog updated (embassy-futures) |
| 175 | if: steps.changes.outputs.embassy-futures == 'true' | 175 | # if: steps.changes.outputs.embassy-futures == 'true' |
| 176 | uses: dangoslen/changelog-enforcer@v3 | 176 | # uses: dangoslen/changelog-enforcer@v3 |
| 177 | with: | 177 | # with: |
| 178 | changeLogPath: embassy-futures/CHANGELOG.md | 178 | # changeLogPath: embassy-futures/CHANGELOG.md |
| 179 | skipLabels: "skip-changelog" | 179 | # skipLabels: "skip-changelog" |
| 180 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-futures/CHANGELOG.md file." | 180 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-futures/CHANGELOG.md file." |
| 181 | - name: Check that changelog updated (embassy-imxrt) | 181 | # - name: Check that changelog updated (embassy-imxrt) |
| 182 | if: steps.changes.outputs.embassy-imxrt == 'true' | 182 | # if: steps.changes.outputs.embassy-imxrt == 'true' |
| 183 | uses: dangoslen/changelog-enforcer@v3 | 183 | # uses: dangoslen/changelog-enforcer@v3 |
| 184 | with: | 184 | # with: |
| 185 | changeLogPath: embassy-imxrt/CHANGELOG.md | 185 | # changeLogPath: embassy-imxrt/CHANGELOG.md |
| 186 | skipLabels: "skip-changelog" | 186 | # skipLabels: "skip-changelog" |
| 187 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-imxrt/CHANGELOG.md file." | 187 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-imxrt/CHANGELOG.md file." |
| 188 | - name: Check that changelog updated (embassy-mspm0) | 188 | # - name: Check that changelog updated (embassy-mspm0) |
| 189 | if: steps.changes.outputs.embassy-mspm0 == 'true' | 189 | # if: steps.changes.outputs.embassy-mspm0 == 'true' |
| 190 | uses: dangoslen/changelog-enforcer@v3 | 190 | # uses: dangoslen/changelog-enforcer@v3 |
| 191 | with: | 191 | # with: |
| 192 | changeLogPath: embassy-mspm0/CHANGELOG.md | 192 | # changeLogPath: embassy-mspm0/CHANGELOG.md |
| 193 | skipLabels: "skip-changelog" | 193 | # skipLabels: "skip-changelog" |
| 194 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-mspm0/CHANGELOG.md file." | 194 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-mspm0/CHANGELOG.md file." |
| 195 | - name: Check that changelog updated (embassy-net) | 195 | # - name: Check that changelog updated (embassy-net) |
| 196 | if: steps.changes.outputs.embassy-net == 'true' | 196 | # if: steps.changes.outputs.embassy-net == 'true' |
| 197 | uses: dangoslen/changelog-enforcer@v3 | 197 | # uses: dangoslen/changelog-enforcer@v3 |
| 198 | with: | 198 | # with: |
| 199 | changeLogPath: embassy-net/CHANGELOG.md | 199 | # changeLogPath: embassy-net/CHANGELOG.md |
| 200 | skipLabels: "skip-changelog" | 200 | # skipLabels: "skip-changelog" |
| 201 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net/CHANGELOG.md file." | 201 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net/CHANGELOG.md file." |
| 202 | - name: Check that changelog updated (embassy-net-adin1110) | 202 | # - name: Check that changelog updated (embassy-net-adin1110) |
| 203 | if: steps.changes.outputs.embassy-net-adin1110 == 'true' | 203 | # if: steps.changes.outputs.embassy-net-adin1110 == 'true' |
| 204 | uses: dangoslen/changelog-enforcer@v3 | 204 | # uses: dangoslen/changelog-enforcer@v3 |
| 205 | with: | 205 | # with: |
| 206 | changeLogPath: embassy-net-adin1110/CHANGELOG.md | 206 | # changeLogPath: embassy-net-adin1110/CHANGELOG.md |
| 207 | skipLabels: "skip-changelog" | 207 | # skipLabels: "skip-changelog" |
| 208 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-adin1110/CHANGELOG.md file." | 208 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-adin1110/CHANGELOG.md file." |
| 209 | - name: Check that changelog updated (embassy-net-driver) | 209 | # - name: Check that changelog updated (embassy-net-driver) |
| 210 | if: steps.changes.outputs.embassy-net-driver == 'true' | 210 | # if: steps.changes.outputs.embassy-net-driver == 'true' |
| 211 | uses: dangoslen/changelog-enforcer@v3 | 211 | # uses: dangoslen/changelog-enforcer@v3 |
| 212 | with: | 212 | # with: |
| 213 | changeLogPath: embassy-net-driver/CHANGELOG.md | 213 | # changeLogPath: embassy-net-driver/CHANGELOG.md |
| 214 | skipLabels: "skip-changelog" | 214 | # skipLabels: "skip-changelog" |
| 215 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-driver/CHANGELOG.md file." | 215 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-driver/CHANGELOG.md file." |
| 216 | - name: Check that changelog updated (embassy-net-driver-channel) | 216 | # - name: Check that changelog updated (embassy-net-driver-channel) |
| 217 | if: steps.changes.outputs.embassy-net-driver-channel == 'true' | 217 | # if: steps.changes.outputs.embassy-net-driver-channel == 'true' |
| 218 | uses: dangoslen/changelog-enforcer@v3 | 218 | # uses: dangoslen/changelog-enforcer@v3 |
| 219 | with: | 219 | # with: |
| 220 | changeLogPath: embassy-net-driver-channel/CHANGELOG.md | 220 | # changeLogPath: embassy-net-driver-channel/CHANGELOG.md |
| 221 | skipLabels: "skip-changelog" | 221 | # skipLabels: "skip-changelog" |
| 222 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-driver-channel/CHANGELOG.md file." | 222 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-driver-channel/CHANGELOG.md file." |
| 223 | - name: Check that changelog updated (embassy-net-enc28j60) | 223 | # - name: Check that changelog updated (embassy-net-enc28j60) |
| 224 | if: steps.changes.outputs.embassy-net-enc28j60 == 'true' | 224 | # if: steps.changes.outputs.embassy-net-enc28j60 == 'true' |
| 225 | uses: dangoslen/changelog-enforcer@v3 | 225 | # uses: dangoslen/changelog-enforcer@v3 |
| 226 | with: | 226 | # with: |
| 227 | changeLogPath: embassy-net-enc28j60/CHANGELOG.md | 227 | # changeLogPath: embassy-net-enc28j60/CHANGELOG.md |
| 228 | skipLabels: "skip-changelog" | 228 | # skipLabels: "skip-changelog" |
| 229 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-enc28j60/CHANGELOG.md file." | 229 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-enc28j60/CHANGELOG.md file." |
| 230 | - name: Check that changelog updated (embassy-net-esp-hosted) | 230 | # - name: Check that changelog updated (embassy-net-esp-hosted) |
| 231 | if: steps.changes.outputs.embassy-net-esp-hosted == 'true' | 231 | # if: steps.changes.outputs.embassy-net-esp-hosted == 'true' |
| 232 | uses: dangoslen/changelog-enforcer@v3 | 232 | # uses: dangoslen/changelog-enforcer@v3 |
| 233 | with: | 233 | # with: |
| 234 | changeLogPath: embassy-net-esp-hosted/CHANGELOG.md | 234 | # changeLogPath: embassy-net-esp-hosted/CHANGELOG.md |
| 235 | skipLabels: "skip-changelog" | 235 | # skipLabels: "skip-changelog" |
| 236 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-esp-hosted/CHANGELOG.md file." | 236 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-esp-hosted/CHANGELOG.md file." |
| 237 | - name: Check that changelog updated (embassy-net-nrf91) | 237 | # - name: Check that changelog updated (embassy-net-nrf91) |
| 238 | if: steps.changes.outputs.embassy-net-nrf91 == 'true' | 238 | # if: steps.changes.outputs.embassy-net-nrf91 == 'true' |
| 239 | uses: dangoslen/changelog-enforcer@v3 | 239 | # uses: dangoslen/changelog-enforcer@v3 |
| 240 | with: | 240 | # with: |
| 241 | changeLogPath: embassy-net-nrf91/CHANGELOG.md | 241 | # changeLogPath: embassy-net-nrf91/CHANGELOG.md |
| 242 | skipLabels: "skip-changelog" | 242 | # skipLabels: "skip-changelog" |
| 243 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-nrf91/CHANGELOG.md file." | 243 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-nrf91/CHANGELOG.md file." |
| 244 | - name: Check that changelog updated (embassy-net-ppp) | 244 | # - name: Check that changelog updated (embassy-net-ppp) |
| 245 | if: steps.changes.outputs.embassy-net-ppp == 'true' | 245 | # if: steps.changes.outputs.embassy-net-ppp == 'true' |
| 246 | uses: dangoslen/changelog-enforcer@v3 | 246 | # uses: dangoslen/changelog-enforcer@v3 |
| 247 | with: | 247 | # with: |
| 248 | changeLogPath: embassy-net-ppp/CHANGELOG.md | 248 | # changeLogPath: embassy-net-ppp/CHANGELOG.md |
| 249 | skipLabels: "skip-changelog" | 249 | # skipLabels: "skip-changelog" |
| 250 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-ppp/CHANGELOG.md file." | 250 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-ppp/CHANGELOG.md file." |
| 251 | - name: Check that changelog updated (embassy-net-tuntap) | 251 | # - name: Check that changelog updated (embassy-net-tuntap) |
| 252 | if: steps.changes.outputs.embassy-net-tuntap == 'true' | 252 | # if: steps.changes.outputs.embassy-net-tuntap == 'true' |
| 253 | uses: dangoslen/changelog-enforcer@v3 | 253 | # uses: dangoslen/changelog-enforcer@v3 |
| 254 | with: | 254 | # with: |
| 255 | changeLogPath: embassy-net-tuntap/CHANGELOG.md | 255 | # changeLogPath: embassy-net-tuntap/CHANGELOG.md |
| 256 | skipLabels: "skip-changelog" | 256 | # skipLabels: "skip-changelog" |
| 257 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-tuntap/CHANGELOG.md file." | 257 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-tuntap/CHANGELOG.md file." |
| 258 | - name: Check that changelog updated (embassy-net-wiznet) | 258 | # - name: Check that changelog updated (embassy-net-wiznet) |
| 259 | if: steps.changes.outputs.embassy-net-wiznet == 'true' | 259 | # if: steps.changes.outputs.embassy-net-wiznet == 'true' |
| 260 | uses: dangoslen/changelog-enforcer@v3 | 260 | # uses: dangoslen/changelog-enforcer@v3 |
| 261 | with: | 261 | # with: |
| 262 | changeLogPath: embassy-net-wiznet/CHANGELOG.md | 262 | # changeLogPath: embassy-net-wiznet/CHANGELOG.md |
| 263 | skipLabels: "skip-changelog" | 263 | # skipLabels: "skip-changelog" |
| 264 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-wiznet/CHANGELOG.md file." | 264 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-net-wiznet/CHANGELOG.md file." |
| 265 | - name: Check that changelog updated (embassy-nrf) | 265 | # - name: Check that changelog updated (embassy-nrf) |
| 266 | if: steps.changes.outputs.embassy-nrf == 'true' | 266 | # if: steps.changes.outputs.embassy-nrf == 'true' |
| 267 | uses: dangoslen/changelog-enforcer@v3 | 267 | # uses: dangoslen/changelog-enforcer@v3 |
| 268 | with: | 268 | # with: |
| 269 | changeLogPath: embassy-nrf/CHANGELOG.md | 269 | # changeLogPath: embassy-nrf/CHANGELOG.md |
| 270 | skipLabels: "skip-changelog" | 270 | # skipLabels: "skip-changelog" |
| 271 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-nrf/CHANGELOG.md file." | 271 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-nrf/CHANGELOG.md file." |
| 272 | - name: Check that changelog updated (embassy-nxp) | 272 | # - name: Check that changelog updated (embassy-nxp) |
| 273 | if: steps.changes.outputs.embassy-nxp == 'true' | 273 | # if: steps.changes.outputs.embassy-nxp == 'true' |
| 274 | uses: dangoslen/changelog-enforcer@v3 | 274 | # uses: dangoslen/changelog-enforcer@v3 |
| 275 | with: | 275 | # with: |
| 276 | changeLogPath: embassy-nxp/CHANGELOG.md | 276 | # changeLogPath: embassy-nxp/CHANGELOG.md |
| 277 | skipLabels: "skip-changelog" | 277 | # skipLabels: "skip-changelog" |
| 278 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-nxp/CHANGELOG.md file." | 278 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-nxp/CHANGELOG.md file." |
| 279 | - name: Check that changelog updated (embassy-rp) | 279 | # - name: Check that changelog updated (embassy-rp) |
| 280 | if: steps.changes.outputs.embassy-rp == 'true' | 280 | # if: steps.changes.outputs.embassy-rp == 'true' |
| 281 | uses: dangoslen/changelog-enforcer@v3 | 281 | # uses: dangoslen/changelog-enforcer@v3 |
| 282 | with: | 282 | # with: |
| 283 | changeLogPath: embassy-rp/CHANGELOG.md | 283 | # changeLogPath: embassy-rp/CHANGELOG.md |
| 284 | skipLabels: "skip-changelog" | 284 | # skipLabels: "skip-changelog" |
| 285 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-rp/CHANGELOG.md file." | 285 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-rp/CHANGELOG.md file." |
| 286 | - name: Check that changelog updated (embassy-stm32) | 286 | # - name: Check that changelog updated (embassy-stm32) |
| 287 | if: steps.changes.outputs.embassy-stm32 == 'true' | 287 | # if: steps.changes.outputs.embassy-stm32 == 'true' |
| 288 | uses: dangoslen/changelog-enforcer@v3 | 288 | # uses: dangoslen/changelog-enforcer@v3 |
| 289 | with: | 289 | # with: |
| 290 | changeLogPath: embassy-stm32/CHANGELOG.md | 290 | # changeLogPath: embassy-stm32/CHANGELOG.md |
| 291 | skipLabels: "skip-changelog" | 291 | # skipLabels: "skip-changelog" |
| 292 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-stm32/CHANGELOG.md file." | 292 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-stm32/CHANGELOG.md file." |
| 293 | - name: Check that changelog updated (embassy-stm32-wpan) | 293 | # - name: Check that changelog updated (embassy-stm32-wpan) |
| 294 | if: steps.changes.outputs.embassy-stm32-wpan == 'true' | 294 | # if: steps.changes.outputs.embassy-stm32-wpan == 'true' |
| 295 | uses: dangoslen/changelog-enforcer@v3 | 295 | # uses: dangoslen/changelog-enforcer@v3 |
| 296 | with: | 296 | # with: |
| 297 | changeLogPath: embassy-stm32-wpan/CHANGELOG.md | 297 | # changeLogPath: embassy-stm32-wpan/CHANGELOG.md |
| 298 | skipLabels: "skip-changelog" | 298 | # skipLabels: "skip-changelog" |
| 299 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-stm32-wpan/CHANGELOG.md file." | 299 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-stm32-wpan/CHANGELOG.md file." |
| 300 | - name: Check that changelog updated (embassy-sync) | 300 | # - name: Check that changelog updated (embassy-sync) |
| 301 | if: steps.changes.outputs.embassy-sync == 'true' | 301 | # if: steps.changes.outputs.embassy-sync == 'true' |
| 302 | uses: dangoslen/changelog-enforcer@v3 | 302 | # uses: dangoslen/changelog-enforcer@v3 |
| 303 | with: | 303 | # with: |
| 304 | changeLogPath: embassy-sync/CHANGELOG.md | 304 | # changeLogPath: embassy-sync/CHANGELOG.md |
| 305 | skipLabels: "skip-changelog" | 305 | # skipLabels: "skip-changelog" |
| 306 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-sync/CHANGELOG.md file." | 306 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-sync/CHANGELOG.md file." |
| 307 | - name: Check that changelog updated (embassy-time) | 307 | # - name: Check that changelog updated (embassy-time) |
| 308 | if: steps.changes.outputs.embassy-time == 'true' | 308 | # if: steps.changes.outputs.embassy-time == 'true' |
| 309 | uses: dangoslen/changelog-enforcer@v3 | 309 | # uses: dangoslen/changelog-enforcer@v3 |
| 310 | with: | 310 | # with: |
| 311 | changeLogPath: embassy-time/CHANGELOG.md | 311 | # changeLogPath: embassy-time/CHANGELOG.md |
| 312 | skipLabels: "skip-changelog" | 312 | # skipLabels: "skip-changelog" |
| 313 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time/CHANGELOG.md file." | 313 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time/CHANGELOG.md file." |
| 314 | - name: Check that changelog updated (embassy-time-driver) | 314 | # - name: Check that changelog updated (embassy-time-driver) |
| 315 | if: steps.changes.outputs.embassy-time-driver == 'true' | 315 | # if: steps.changes.outputs.embassy-time-driver == 'true' |
| 316 | uses: dangoslen/changelog-enforcer@v3 | 316 | # uses: dangoslen/changelog-enforcer@v3 |
| 317 | with: | 317 | # with: |
| 318 | changeLogPath: embassy-time-driver/CHANGELOG.md | 318 | # changeLogPath: embassy-time-driver/CHANGELOG.md |
| 319 | skipLabels: "skip-changelog" | 319 | # skipLabels: "skip-changelog" |
| 320 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time-driver/CHANGELOG.md file." | 320 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time-driver/CHANGELOG.md file." |
| 321 | - name: Check that changelog updated (embassy-time-queue-utils) | 321 | # - name: Check that changelog updated (embassy-time-queue-utils) |
| 322 | if: steps.changes.outputs.embassy-time-queue-utils == 'true' | 322 | # if: steps.changes.outputs.embassy-time-queue-utils == 'true' |
| 323 | uses: dangoslen/changelog-enforcer@v3 | 323 | # uses: dangoslen/changelog-enforcer@v3 |
| 324 | with: | 324 | # with: |
| 325 | changeLogPath: embassy-time-queue-utils/CHANGELOG.md | 325 | # changeLogPath: embassy-time-queue-utils/CHANGELOG.md |
| 326 | skipLabels: "skip-changelog" | 326 | # skipLabels: "skip-changelog" |
| 327 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time-queue-utils/CHANGELOG.md file." | 327 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-time-queue-utils/CHANGELOG.md file." |
| 328 | - name: Check that changelog updated (embassy-usb) | 328 | # - name: Check that changelog updated (embassy-usb) |
| 329 | if: steps.changes.outputs.embassy-usb == 'true' | 329 | # if: steps.changes.outputs.embassy-usb == 'true' |
| 330 | uses: dangoslen/changelog-enforcer@v3 | 330 | # uses: dangoslen/changelog-enforcer@v3 |
| 331 | with: | 331 | # with: |
| 332 | changeLogPath: embassy-usb/CHANGELOG.md | 332 | # changeLogPath: embassy-usb/CHANGELOG.md |
| 333 | skipLabels: "skip-changelog" | 333 | # skipLabels: "skip-changelog" |
| 334 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb/CHANGELOG.md file." | 334 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb/CHANGELOG.md file." |
| 335 | - name: Check that changelog updated (embassy-usb-dfu) | 335 | # - name: Check that changelog updated (embassy-usb-dfu) |
| 336 | if: steps.changes.outputs.embassy-usb-dfu == 'true' | 336 | # if: steps.changes.outputs.embassy-usb-dfu == 'true' |
| 337 | uses: dangoslen/changelog-enforcer@v3 | 337 | # uses: dangoslen/changelog-enforcer@v3 |
| 338 | with: | 338 | # with: |
| 339 | changeLogPath: embassy-usb-dfu/CHANGELOG.md | 339 | # changeLogPath: embassy-usb-dfu/CHANGELOG.md |
| 340 | skipLabels: "skip-changelog" | 340 | # skipLabels: "skip-changelog" |
| 341 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-dfu/CHANGELOG.md file." | 341 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-dfu/CHANGELOG.md file." |
| 342 | - name: Check that changelog updated (embassy-usb-driver) | 342 | # - name: Check that changelog updated (embassy-usb-driver) |
| 343 | if: steps.changes.outputs.embassy-usb-driver == 'true' | 343 | # if: steps.changes.outputs.embassy-usb-driver == 'true' |
| 344 | uses: dangoslen/changelog-enforcer@v3 | 344 | # uses: dangoslen/changelog-enforcer@v3 |
| 345 | with: | 345 | # with: |
| 346 | changeLogPath: embassy-usb-driver/CHANGELOG.md | 346 | # changeLogPath: embassy-usb-driver/CHANGELOG.md |
| 347 | skipLabels: "skip-changelog" | 347 | # skipLabels: "skip-changelog" |
| 348 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-driver/CHANGELOG.md file." | 348 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-driver/CHANGELOG.md file." |
| 349 | - name: Check that changelog updated (embassy-usb-logger) | 349 | # - name: Check that changelog updated (embassy-usb-logger) |
| 350 | if: steps.changes.outputs.embassy-usb-logger == 'true' | 350 | # if: steps.changes.outputs.embassy-usb-logger == 'true' |
| 351 | uses: dangoslen/changelog-enforcer@v3 | 351 | # uses: dangoslen/changelog-enforcer@v3 |
| 352 | with: | 352 | # with: |
| 353 | changeLogPath: embassy-usb-logger/CHANGELOG.md | 353 | # changeLogPath: embassy-usb-logger/CHANGELOG.md |
| 354 | skipLabels: "skip-changelog" | 354 | # skipLabels: "skip-changelog" |
| 355 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-logger/CHANGELOG.md file." | 355 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-logger/CHANGELOG.md file." |
| 356 | - name: Check that changelog updated (embassy-usb-synopsys-otg) | 356 | # - name: Check that changelog updated (embassy-usb-synopsys-otg) |
| 357 | if: steps.changes.outputs.embassy-usb-synopsys-otg == 'true' | 357 | # if: steps.changes.outputs.embassy-usb-synopsys-otg == 'true' |
| 358 | uses: dangoslen/changelog-enforcer@v3 | 358 | # uses: dangoslen/changelog-enforcer@v3 |
| 359 | with: | 359 | # with: |
| 360 | changeLogPath: embassy-usb-synopsys-otg/CHANGELOG.md | 360 | # changeLogPath: embassy-usb-synopsys-otg/CHANGELOG.md |
| 361 | skipLabels: "skip-changelog" | 361 | # skipLabels: "skip-changelog" |
| 362 | missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-synopsys-otg/CHANGELOG.md file." | 362 | # missingUpdateErrorMessage: "Please add a changelog entry in the embassy-usb-synopsys-otg/CHANGELOG.md file." |
