Browse Source

feat(workflow): add workflow_dispatch trigger to Prettier and Super Linter

* Enables manual triggering of the Prettier and Super Linter workflows.
* Enhances flexibility for developers to run formatting and linting on demand.
pull/79/head
Daniel Gibbs 10 months ago
parent
commit
22b37b46dd
Failed to extract signature
  1. 1
      .github/workflows/action-prettier.yml
  2. 1
      .github/workflows/action-super-linter.yml

1
.github/workflows/action-prettier.yml

@ -1,5 +1,6 @@
name: Prettier
on:
workflow_dispatch:
push:
branches:
- "*"

1
.github/workflows/action-super-linter.yml

@ -2,6 +2,7 @@
name: Super Linter
on:
workflow_dispatch:
push:
branches:
- "*"

Loading…
Cancel
Save