Add SC16IS75x Breakout Boards as Shields #125
Workflow file for this run
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
# Copyright (c) 2021-2024 TiaC Systems | |
# Copyright (c) 2021 Li-Pro.Net | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Documentation Remove | |
on: | |
workflow_dispatch: # And manually on button click | |
pull_request: | |
types: [closed] | |
branches: | |
- main | |
- 'v*-branch' | |
paths: | |
- 'doc/**' | |
- '**.rst' | |
- 'include/**' | |
- '.known-issues/doc/**' | |
- '**/Kconfig*' | |
- 'west.yml' | |
- '.github/workflows/doc-*.yml' | |
jobs: | |
doc-remove: | |
name: Remove preview documentation for PRs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create documentation removing monitor | |
run: | | |
mkdir doc && cd doc | |
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then | |
# basename will work for both branches and tags | |
branch=$(basename "${{ github.ref }}") | |
echo "remove preview REF-${branch}" > "monitor_${GITHUB_RUN_ID}.txt" | |
else | |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then | |
echo "remove development PR-${{ github.event.number }}" > \ | |
"monitor_${GITHUB_RUN_ID}.txt" | |
fi | |
fi | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: doc | |
path: doc |