From 48e11eae27f12f9e226d8ed209455d58a6ad857e Mon Sep 17 00:00:00 2001 From: Rafael Camargo Date: Sun, 15 Mar 2026 21:14:30 -0300 Subject: [PATCH 1/3] :construction_worker:: Inclusion of workflow for commit lint --- .github/workflows/commit-lint.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/commit-lint.yml diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml new file mode 100644 index 0000000..84aeeea --- /dev/null +++ b/.github/workflows/commit-lint.yml @@ -0,0 +1,23 @@ +name: Commit Lint + +on: + pull_request: + branches: + - main + +jobs: + commit-lint: + name: GitWit Lint + runs-on: ubuntu-latest + permissions: + contents: read + + steps: + - uses: actions/checkout@v6 + with: + fetch-depth: 0 + + - name: Run GitWit Lint + uses: rafandoo/gitwit-action@v1.1.0 + with: + command: lint From 3935030906f505a8591a38ad2ee81cda07a34110 Mon Sep 17 00:00:00 2001 From: Rafael Camargo Date: Sun, 15 Mar 2026 21:25:53 -0300 Subject: [PATCH 2/3] :construction_worker:: Security adjustment --- .github/workflows/coverage.yml | 2 ++ .github/workflows/deploy.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 5d5c3a5..e141727 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -13,6 +13,8 @@ jobs: changes: name: Analyze Changes runs-on: ubuntu-latest + permissions: + contents: read outputs: backend: ${{ steps.filter.outputs.backend }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e100245..eff4214 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -126,6 +126,8 @@ jobs: build-docs: name: Build Documentation Site runs-on: ubuntu-latest + permissions: + contents: read steps: - name: Checkout Source Code From 6fd5aa97fc64c70dab79de42b19a480554fa2709 Mon Sep 17 00:00:00 2001 From: Rafael Camargo Date: Sun, 15 Mar 2026 21:30:56 -0300 Subject: [PATCH 3/3] :construction_worker:: Adjust the label workflow --- .github/labeler.yml | 9 +++++---- .github/workflows/labeler.yml | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index a199e47..ca7feb8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,15 +1,16 @@ documentation: - changed-files: - - any-glob-to-any-file: '**/*.md' + - any-glob-to-any-file: '**/*.md' ci: - changed-files: - - any-glob-to-any-file: '.github/*' + - any-glob-to-any-file: .github/** + config: - changed-files: - - any-glob-to-any-file: - - '*.properties' + - any-glob-to-any-file: + - '*.properties' enhancement: - head-branch: [ '^feature', 'feature' ] diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 014c9b6..11005ea 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -23,6 +23,6 @@ jobs: sync-labels: true configuration-path: .github/labeler.yml dot: true - env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +