Skip to content

Commit

Permalink
Merge branch 'hotfix/4.1.1'
Browse files Browse the repository at this point in the history
* hotfix/4.1.1:
  Re-use installation instructions in plug-in topics
  Correct version reference in logging bugfix
  Link to № 4250 from dependency listings
  Add details on issues resolved in 4.1.1
  Group dependency updates as in earlier versions
  Add latest issues to 4.1.1 Release Notes stub
  Prepare 4.1.1 Release Notes stub
  Bump Docker image version to ”4.1.1“
  Bump 'maintenance-version' key to “4.1.1”
  Edit revised short description
  Update example XSLT and example shortdesc
  Add navtitle & edit XSLT pre-processing use case
  Add plug-in example to transform topics with XSLT after preprocess
  Bump stylelint from 15.6.2 to 15.10.1 (#488)
  Bump lint-staged from 13.2.2 to 13.2.3 (#484)
  Run Prettier in CI via NPM (#487)
  Remove remnants of old stylelint-check
  Fix path to `plugin.properties` (#483)
  Add 4.1 release date
  Move `.git-blame-ignore-revs` to repo root
  • Loading branch information
infotexture committed Jul 20, 2023
2 parents a292571 + c6dfc46 commit 6e6e51e
Show file tree
Hide file tree
Showing 24 changed files with 734 additions and 527 deletions.
3 changes: 2 additions & 1 deletion .github/.git-blame-ignore-revs → .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# List of commits to ignore during blame

# Set your local config to use this file
# $ git config blame.ignoreRevsFile .github/.git-blame-ignore-revs
# $ git config blame.ignoreRevsFile .git-blame-ignore-revs

# Format: 1 unabbreviated SHA-1 per line

Expand All @@ -23,3 +23,4 @@ b79e3346415ba66544bd7fe8439272f6e130ce3c
# [1]: https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revltrevgt
# [2]: https://black.readthedocs.io/en/hello-furo/guides/introducing_black_to_your_project.html#avoiding-ruining-git-blame
# [3]: https://www.moxio.com/blog/43/ignoring-bulk-change-commits-with-git-blame
# [4]: https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
20 changes: 12 additions & 8 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ jobs:
# Make sure the actual branch is checked out when running on pull requests
ref: ${{ github.ref }}

- name: Prettify code
uses: creyD/prettier_action@v4.3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
# This part is also where you can pass other options, for example:
prettier_options: --write **/*.{css,dita*,json,md,scss,xml,yaml,yml}
# Install Prettier XML plugin
prettier_plugins: '@prettier/plugin-xml'
# Runs the action in dry mode. Files wont get changed and the action fails if there are unprettified files.
dry: true
node-version: '18.x'
cache: 'npm'

- name: Install dependencies
run: |
npm ci
- name: Prettify code
run: |
npm run check
Loading

0 comments on commit 6e6e51e

Please sign in to comment.