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 84% rename from .github/workflows/check-required-labels.yaml rename to .github/workflows/validate-labels.yaml index 03984e95..df260409 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,8 +9,7 @@ on: - unlabeled jobs: - check-labels: - name: Check labels + validate: runs-on: ubuntu-latest steps: - uses: docker://agilepathway/pull-request-label-checker:latest