[FOLIO-3349] Include exception in GH Actions workflows to skip markdown-only edits. Created: 19/Nov/21 Updated: 21/Jan/23 Resolved: 12/Oct/22 |
|
| Status: | Closed |
| Project: | FOLIO |
| Components: | None |
| Affects versions: | None |
| Fix versions: | None |
| Type: | Task | Priority: | P3 |
| Reporter: | John Malconian | Assignee: | Ankita Sen |
| Resolution: | Done | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original estimate: | Not Specified | ||
| Issue links: |
|
||||||||||||||||
| Sprint: | DevOps Sprint 146, DevOps Sprint 145, DevOps Sprint 149, DevOps Sprint 150 | ||||||||||||||||
| Development Team: | FOLIO DevOps | ||||||||||||||||
| Description |
|
Running a full CI workflow. e.g 'yarn install', 'yarn test', etc. shouldn't be necessary when only committing changes to markdown files (*.md). This would streamline the process of updating documentation and conserve CI resources. Example: name: build-workflow
on:
push:
paths-ignore:
- '**.md'
- '*.md'
|
| Comments |
| Comment by David Crossley [ 26/Jul/22 ] |
|
With Index Data Workflows, we found that sometimes people have *.txt files. Also sometimes use uppercase filename extensions! This pattern is helpful (noting that GH Workflows regex is impoverished): paths-ignore:
- '**/*.[mM][dD]'
- '**/*.[tT][xX][tT]'
|
| Comment by Ankita Sen [ 12/Oct/22 ] |
|
added the updated workflow to https://github.com/folio-org/.github |