Disable fail-fast strategy and add .md files to be ignored for triggering workflow.

This commit is contained in:
Mohit Sethi
2024-01-20 20:19:36 +00:00
committed by Ryan Fleury
parent 2c8e17be3b
commit 40fc63ca06
+9 -1
View File
@@ -1,10 +1,18 @@
name: builds
on: [push, pull_request]
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build-windows-2022:
runs-on: windows-2022
strategy:
fail-fast: false
steps:
- name: checkout
uses: actions/checkout@v2