Skip to content

ignore markdown

ignore markdown #2

Workflow file for this run

---
name: Build demoapp-backend
# Events: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows
on:
push:
branches:
- main
- release/.*
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest # GitHub-hosted runners: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
steps:
- name: Clone
uses: actions/checkout@v4 # https://github.com/marketplace/actions/checkout
- name: List files
run: ls
- name: Lint files
uses: ./.github/workflows/lint.yaml
with:
yaml: 'true'