From e89be7406a6702eddc068086586fcd8c48cd95d9 Mon Sep 17 00:00:00 2001 From: Denis Rossati Date: Wed, 15 Apr 2026 11:51:21 -0300 Subject: [PATCH 1/2] Correct workflow --- .github/workflows/{pr-preview.yaml => deploy-preview.yaml} | 4 ++-- .../{deploy-published-releases.yaml => deploy-release.yaml} | 2 +- .../{branch-validations.yaml => validate-branch.yaml} | 4 ++-- .../{check-required-labels.yaml => validate-labels.yaml} | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) rename .github/workflows/{pr-preview.yaml => deploy-preview.yaml} (97%) rename .github/workflows/{deploy-published-releases.yaml => deploy-release.yaml} (96%) rename .github/workflows/{branch-validations.yaml => validate-branch.yaml} (89%) rename .github/workflows/{check-required-labels.yaml => validate-labels.yaml} (90%) diff --git a/.github/workflows/pr-preview.yaml b/.github/workflows/deploy-preview.yaml similarity index 97% rename from .github/workflows/pr-preview.yaml rename to .github/workflows/deploy-preview.yaml index d54dba38..6cae8ec3 100644 --- a/.github/workflows/pr-preview.yaml +++ b/.github/workflows/deploy-preview.yaml @@ -1,4 +1,4 @@ -name: PR preview +name: Deploy preview on: pull_request: @@ -11,7 +11,7 @@ env: MAX_QUERY_LENGTH: 500 jobs: - preview: + deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 diff --git a/.github/workflows/deploy-published-releases.yaml b/.github/workflows/deploy-release.yaml similarity index 96% rename from .github/workflows/deploy-published-releases.yaml rename to .github/workflows/deploy-release.yaml index 8acd1618..7366626c 100644 --- a/.github/workflows/deploy-published-releases.yaml +++ b/.github/workflows/deploy-release.yaml @@ -1,4 +1,4 @@ -name: Release +name: Deploy release on: release: diff --git a/.github/workflows/branch-validations.yaml b/.github/workflows/validate-branch.yaml similarity index 89% rename from .github/workflows/branch-validations.yaml rename to .github/workflows/validate-branch.yaml index 95dc748c..624e247e 100644 --- a/.github/workflows/branch-validations.yaml +++ b/.github/workflows/validate-branch.yaml @@ -1,4 +1,4 @@ -name: Validations +name: Validate branch on: push: @@ -12,7 +12,7 @@ on: - opened jobs: - validations: + validate: uses: croct-tech/shared-public-configs/.github/workflows/javascript-validations.yml@master with: run-security: true diff --git a/.github/workflows/check-required-labels.yaml b/.github/workflows/validate-labels.yaml similarity index 90% rename from .github/workflows/check-required-labels.yaml rename to .github/workflows/validate-labels.yaml index 03984e95..af618af1 100644 --- a/.github/workflows/check-required-labels.yaml +++ b/.github/workflows/validate-labels.yaml @@ -1,4 +1,4 @@ -name: Label requirements +name: Validate labels on: pull_request: types: @@ -9,7 +9,7 @@ on: - unlabeled jobs: - check-labels: + validate: name: Check labels runs-on: ubuntu-latest steps: From d0274d9ad4fb371207666b19e5ec35e7b3639e6c Mon Sep 17 00:00:00 2001 From: Luiz Ferraz Date: Tue, 21 Apr 2026 16:24:43 +0000 Subject: [PATCH 2/2] Applied workflow standards --- .github/workflows/validate-labels.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/validate-labels.yaml b/.github/workflows/validate-labels.yaml index af618af1..df260409 100644 --- a/.github/workflows/validate-labels.yaml +++ b/.github/workflows/validate-labels.yaml @@ -10,7 +10,6 @@ on: jobs: validate: - name: Check labels runs-on: ubuntu-latest steps: - uses: docker://agilepathway/pull-request-label-checker:latest