Skip to content

Commit 46fe38d

Browse files
committed
1.0.0
1 parent 96b3244 commit 46fe38d

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

.github/workflows/polish-the-code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ permissions:
1919
jobs:
2020
prettier-fix:
2121
# Note: runs-on doesn't accept all expressions, so a string is used
22-
runs-on: "ubuntu-24.04"
22+
runs-on: "ubuntu-latest"
2323
permissions:
2424
contents: write
2525
# Limit the running time
2626
timeout-minutes: 10
2727
steps:
2828
- name: Invoke the Prettier fix
29-
uses: WorkOfStan/[email protected].0
29+
uses: WorkOfStan/[email protected].1
3030
with:
3131
commit-changes: true
3232

3333
super-linter:
3434
needs: prettier-fix
3535
uses: WorkOfStan/seablast-actions/.github/workflows/[email protected]
3636
with:
37-
runs-on: "ubuntu-24.04"
37+
runs-on: "ubuntu-latest"

CHANGELOG.md

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
### `Security` in case of vulnerabilities
2121

22-
## [1.1.0] - 2025-02-01
23-
24-
### Added
25-
26-
- The new boolean input `stop-on-manual-fix` will cause the workflow to stop (fail) if manual fixes are necessary.
27-
- Also stop with an error if some manual fixes are required on top of automatic fixes.
28-
- Cache `vendor/` (for a unique combination of php-version and composer.json) after a successful run in order to speed up further runs.
29-
30-
## [1.0.0] - 2025-01-18
22+
## [1.0.0] - 2025-02-01
3123

3224
- This GitHub Action automates PHPCS formatting across your project, ensuring consistent code styling by creating a new branch for review when necessary. It simplifies integrating PHPCS/PHPCBF into your workflow.
3325
- A warning appears in the GitHub Actions Annotations section if changes occur and therefore a new branch is created.
@@ -37,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3729
- **Branch Name Output**: The `branch-name` is provided as an output for downstream workflows.
3830
- Notice about a successful commit.
3931
- **Checkout code**: Fetches the latest changes so that modifications from a previous job are included, enabling seamless job chaining.
32+
- The new boolean input `stop-on-manual-fix` will cause the workflow to stop (fail) if manual fixes are necessary. (Also stops with an error if some manual fixes are required on top of automatic fixes.)
33+
- Cached `vendor/` (for a unique combination of php-version and composer.json) after a successful run in order to speed up further runs.
4034

41-
[Unreleased]: https://github.com/WorkOfStan/phpcs-fix/compare/v1.1.0...HEAD?w=1
42-
[1.1.0]: https://github.com/WorkOfStan/phpcs-fix/compare/v1.0.0...v1.1.0?w=1
35+
[Unreleased]: https://github.com/WorkOfStan/phpcs-fix/compare/v1.0.0...HEAD?w=1
4336
[1.0.0]: https://github.com/WorkOfStan/phpcs-fix/releases/tag/v1.0.0

0 commit comments

Comments
 (0)