Skip to content

feat(buildroot): add configs and sources for AM62PX and AM64X #1482

feat(buildroot): add configs and sources for AM62PX and AM64X

feat(buildroot): add configs and sources for AM62PX and AM64X #1482

Workflow file for this run

---
# yamllint disable rule:line-length
name: "vale"
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- '**.rst'
- '**.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
vale:
name: vale
runs-on: ubuntu-latest
container:
image: ghcr.io/texasinstruments/processor-sdk-doc:latest
options: --entrypoint /bin/bash
steps:
- name: Prepare GitHub workdir
run: |
mkdir -p /github/home/
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # v47.0.6
with:
json: true
escape_json: false
files: |
**.rst
**.md
- name: Run vale checks on modified files
uses: vale-cli/vale-action@85f9f7f2c5f449ac0ae5b66662961bae3f77ca6a # v2.1.2
if: steps.changed-files.outputs.any_changed == 'true'
with:
fail_on_error: false # to be changed when upstream addresses 84
files: ${{ steps.changed-files.outputs.all_changed_files }}
version: none