Skip to content

User Stories in Work Item Descriptions #64

User Stories in Work Item Descriptions

User Stories in Work Item Descriptions #64

Workflow file for this run

name: Prettifying
on:
pull_request:
branches: [main]
paths-ignore:
- "publication/**"
- "errata.html"
- "errata11.html"
- "ontology/*.html"
- "validation/tm-json-schema-validation.json"
- "context/td-context-1.1.jsonld"
- "visualization/*.png"
- "visualization/*.svg"
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
# This is important to fetch the changes to the previous commit
fetch-depth: 0
- name: Prettify code
uses: creyD/[email protected]
with:
prettier_options: --write .
only_changed: True