Remove suggestion for adding items to Not Yet Awesome list (#493)

* Remove suggestion for adding items to Not Yet Awesome list

The NYAERL repo is archived.

* Run push pipeline only in master branch

* Clean up markdown
This commit is contained in:
Berkus Decker
2025-10-09 13:01:57 +03:00
committed by GitHub
parent e9a99b3630
commit df8742c4b6
2 changed files with 32 additions and 33 deletions

View File

@@ -1,35 +1,36 @@
---
name: Linting
name: Linting
on: # yamllint disable-line rule:truthy
push: null
pull_request: null
on:
push:
branches:
- "master"
pull_request:
permissions: {}
permissions: {}
jobs:
Super_Linter:
name: Super Linter
runs-on: ubuntu-latest
jobs:
Super_Linter:
name: Super Linter
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter@v7.2.0 # x-release-please-version
env:
# Linters
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
LINTER_RULES_PATH: ./
MARKDOWN_CONFIG_FILE: .markdownlint.yml
ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-linter
uses: super-linter/super-linter@v7.2.0 # x-release-please-version
env:
# Linters
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true
LINTER_RULES_PATH: ./
MARKDOWN_CONFIG_FILE: .markdownlint.yml
ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -8,8 +8,6 @@ This is a curated list of resources related to embedded and low-level programmin
This project is developed and maintained by the [Resources team][team].
**Don't see something you want or need here?** Add it to the [Not Yet Awesome Embedded Rust](https://github.com/rust-embedded/not-yet-awesome-embedded-rust) list!
## Table of Contents
- [Embedded Rust](#embedded-rust)
@@ -1386,7 +1384,7 @@ Work in progress crates. Help the authors make these crates awesome!
- [OxCC](https://github.com/jonlamb-gh/oxcc): A port of Open Source Car Control written in Rust
- [Rubble](https://github.com/jonas-schievink/rubble): A pure-Rust embedded BLE stack [![crates.io](https://img.shields.io/crates/v/rubble.svg)](https://crates.io/crates/rubble)
- [post-haste](https://github.com/petekubiak/post-haste): A no_std, alloc-free async Rust library for creating modular projects.
-
## Panic handling
There are many ways to handle panics in embedded devices, these crates provide helpful variants.