diff --git a/.github/workflows/ci-cd-main.yml b/.github/workflows/ci-cd-main.yml index 672834a3b..f1f1789d1 100644 --- a/.github/workflows/ci-cd-main.yml +++ b/.github/workflows/ci-cd-main.yml @@ -27,25 +27,25 @@ jobs: generate-git-short-sha: name: Generate git short sha - uses: ./.github/workflows/action-generate-git-short-sha.yml + uses: ./.github/workflows/workflow-generate-git-short-sha.yml get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml build-and-test: name: Build and test backend - uses: ./.github/workflows/action-build-and-test.yml + uses: ./.github/workflows/workflow-build-and-test.yml needs: [check-for-changes] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true' || needs.check-for-changes.outputs.hasTestChanges == 'true' }} publish: name: Build and publish docker images - uses: ./.github/workflows/action-publish.yml + uses: ./.github/workflows/workflow-publish.yml needs: [ get-current-version, @@ -64,7 +64,7 @@ jobs: name: Deploy infra to test needs: [get-current-version, check-for-changes, generate-git-short-sha] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasAzureChanges == 'true' }} - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -90,7 +90,7 @@ jobs: ] # we want deployment of apps to be dependent on deployment of infrastructure, but if infrastructure is skipped, we still want to deploy the apps if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true') }} - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -111,7 +111,7 @@ jobs: name: Deploy slack notifier (test) needs: [check-for-changes] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSlackNotifierChanges == 'true' }} - uses: ./.github/workflows/action-deploy-function.yml + uses: ./.github/workflows/workflow-deploy-function.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -127,7 +127,7 @@ jobs: name: Deploy schema npm package needs: [check-for-changes, get-current-version, generate-git-short-sha] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true' }} - uses: ./.github/workflows/action-publish-schema.yml + uses: ./.github/workflows/workflow-publish-schema.yml with: version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} secrets: @@ -138,7 +138,7 @@ jobs: # we want the end-to-end tests to be dependent on deployment of infrastructure and apps, but if infrastructure is skipped, we still want to run the tests if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true' || needs.check-for-changes.outputs.hasTestChanges == 'true') }} needs: [deploy-apps-test, check-for-changes] - uses: ./.github/workflows/action-run-k6-tests.yml + uses: ./.github/workflows/workflow-run-k6-tests.yml secrets: TOKEN_GENERATOR_USERNAME: ${{ secrets.TOKEN_GENERATOR_USERNAME }} TOKEN_GENERATOR_PASSWORD: ${{ secrets.TOKEN_GENERATOR_PASSWORD }} @@ -154,7 +154,7 @@ jobs: name: Send Slack message on failure needs: [deploy-infra-test, deploy-apps-test, deploy-slack-notifier-test, run-e2e-tests, publish-schema-npm, publish] if: ${{ always() && failure() && !cancelled() }} - uses: ./.github/workflows/action-send-ci-cd-status-slack-message.yml + uses: ./.github/workflows/workflow-send-ci-cd-status-slack-message.yml with: environment: test infra_status: ${{ needs.deploy-infra-test.result }} diff --git a/.github/workflows/ci-cd-prod.yml b/.github/workflows/ci-cd-prod.yml index a17822267..d61dae82b 100644 --- a/.github/workflows/ci-cd-prod.yml +++ b/.github/workflows/ci-cd-prod.yml @@ -13,17 +13,17 @@ jobs: # Get changed files between previous tag and current tag: https://github.com/marketplace/actions/changed-files check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml dry-run-deploy-infra-prod: name: Dry run deploy infra to prod if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasAzureChanges == 'true' }} needs: [get-current-version, check-for-changes] - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -42,7 +42,7 @@ jobs: name: Deploy infra to prod if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasAzureChanges == 'true' }} needs: [get-current-version, check-for-changes, dry-run-deploy-infra-prod] - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -62,7 +62,7 @@ jobs: [get-current-version, check-for-changes, deploy-infra-prod] # we want deployment of apps to be dependent on deployment of infrastructure, but if infrastructure is skipped, we still want to dry-run deploy the apps if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true') }} - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -85,7 +85,7 @@ jobs: needs: [get-current-version, check-for-changes, dry-run-deploy-apps-prod] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true' }} - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -106,7 +106,7 @@ jobs: name: Deploy slack notifier (prod) needs: [check-for-changes] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSlackNotifierChanges == 'true' }} - uses: ./.github/workflows/action-deploy-function.yml + uses: ./.github/workflows/workflow-deploy-function.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -123,7 +123,7 @@ jobs: # # we want the end-to-end tests to be dependent on deployment of infrastructure and apps, but if infrastructure is skipped, we still want to run the tests # if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true') }} # needs: [deploy-apps-prod, check-for-changes] - # uses: ./.github/workflows/action-run-k6-tests.yml + # uses: ./.github/workflows/workflow-run-k6-tests.yml # secrets: # TOKEN_GENERATOR_USERNAME: ${{ secrets.TOKEN_GENERATOR_USERNAME }} # TOKEN_GENERATOR_PASSWORD: ${{ secrets.TOKEN_GENERATOR_PASSWORD }} @@ -139,7 +139,7 @@ jobs: name: Send Slack message on failure needs: [deploy-infra-prod, deploy-apps-prod, deploy-slack-notifier-prod] if: ${{ always() && failure() && !cancelled() }} - uses: ./.github/workflows/action-send-ci-cd-status-slack-message.yml + uses: ./.github/workflows/workflow-send-ci-cd-status-slack-message.yml with: environment: prod infra_status: ${{ needs.deploy-infra-prod.result }} diff --git a/.github/workflows/ci-cd-pull-request-release-please.yml b/.github/workflows/ci-cd-pull-request-release-please.yml index 101dae168..8f559d143 100644 --- a/.github/workflows/ci-cd-pull-request-release-please.yml +++ b/.github/workflows/ci-cd-pull-request-release-please.yml @@ -15,21 +15,21 @@ jobs: get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml generate-git-short-sha: name: Generate git short sha needs: [verify-release-please-branch] - uses: ./.github/workflows/action-generate-git-short-sha.yml + uses: ./.github/workflows/workflow-generate-git-short-sha.yml dry-run-deploy-infra-staging: name: Deploy infra to staging (dry run) needs: [generate-git-short-sha, get-current-version, check-for-changes] - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -47,7 +47,7 @@ jobs: dry-run-deploy-apps-staging: name: Deploy apps to staging (dry run) needs: [generate-git-short-sha, get-current-version, check-for-changes] - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} diff --git a/.github/workflows/ci-cd-pull-request.yml b/.github/workflows/ci-cd-pull-request.yml index b6f80028c..523f85e78 100644 --- a/.github/workflows/ci-cd-pull-request.yml +++ b/.github/workflows/ci-cd-pull-request.yml @@ -10,23 +10,23 @@ on: jobs: generate-git-short-sha: name: Generate git short sha - uses: ./.github/workflows/action-generate-git-short-sha.yml + uses: ./.github/workflows/workflow-generate-git-short-sha.yml get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml build: - uses: ./.github/workflows/action-build-and-test.yml + uses: ./.github/workflows/workflow-build-and-test.yml needs: [check-for-changes] if: ${{ needs.check-for-changes.outputs.hasBackendChanges == 'true' || needs.check-for-changes.outputs.hasTestChanges == 'true' }} build-infrastructure: - uses: ./.github/workflows/action-build-infrastructure.yml + uses: ./.github/workflows/workflow-build-infrastructure.yml needs: [check-for-changes] if: ${{ always() && needs.check-for-changes.outputs.hasAzureChanges == 'true' }} secrets: @@ -38,7 +38,7 @@ jobs: dry-run-deploy-infra: name: Dry run deploy infrastructure - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml needs: [ generate-git-short-sha, @@ -72,7 +72,7 @@ jobs: ] # we want deployment of apps to be dependent on deployment of infrastructure, but if infrastructure is skipped, we still want to deploy the apps if: ${{ always() && !failure() && !cancelled() && (needs.check-for-changes.outputs.hasBackendChanges == 'true' || needs.check-for-changes.outputs.hasMigrationChanges == 'true') }} - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -91,7 +91,7 @@ jobs: delete-github-deployments: name: Delete GitHub deployments - uses: ./.github/workflows/action-delete-deployments.yml + uses: ./.github/workflows/workflow-delete-deployments.yml needs: [dry-run-deploy-apps, dry-run-deploy-infra] if: ${{ always() && !failure() && !cancelled() }} with: diff --git a/.github/workflows/ci-cd-staging.yml b/.github/workflows/ci-cd-staging.yml index 904ceb33f..7a740dfdb 100644 --- a/.github/workflows/ci-cd-staging.yml +++ b/.github/workflows/ci-cd-staging.yml @@ -13,15 +13,15 @@ jobs: # Get changed files between previous tag and current tag: https://github.com/marketplace/actions/changed-files check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml publish: name: Build and publish docker images - uses: ./.github/workflows/action-publish.yml + uses: ./.github/workflows/workflow-publish.yml if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true' }} needs: [get-current-version, check-for-changes] secrets: @@ -34,7 +34,7 @@ jobs: name: Deploy infra to staging if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasAzureChanges == 'true' }} needs: [get-current-version, check-for-changes] - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -54,7 +54,7 @@ jobs: [get-current-version, check-for-changes, deploy-infra-staging, publish] # we want deployment of apps to be dependent on deployment of infrastructure, but if infrastructure is skipped, we still want to deploy the apps if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true') }} - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -75,7 +75,7 @@ jobs: name: Deploy slack notifier (staging) needs: [check-for-changes] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSlackNotifierChanges == 'true' }} - uses: ./.github/workflows/action-deploy-function.yml + uses: ./.github/workflows/workflow-deploy-function.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} @@ -91,7 +91,7 @@ jobs: name: Publish schema npm package needs: [check-for-changes, get-current-version] if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true' }} - uses: ./.github/workflows/action-publish-schema.yml + uses: ./.github/workflows/workflow-publish-schema.yml with: version: ${{ needs.get-current-version.outputs.version }} secrets: @@ -102,7 +102,7 @@ jobs: # we want the end-to-end tests to be dependent on deployment of infrastructure and apps, but if infrastructure is skipped, we still want to run the tests if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true') }} needs: [deploy-apps-staging, check-for-changes] - uses: ./.github/workflows/action-run-k6-tests.yml + uses: ./.github/workflows/workflow-run-k6-tests.yml secrets: TOKEN_GENERATOR_USERNAME: ${{ secrets.TOKEN_GENERATOR_USERNAME }} TOKEN_GENERATOR_PASSWORD: ${{ secrets.TOKEN_GENERATOR_PASSWORD }} @@ -118,7 +118,7 @@ jobs: name: Send Slack message on failure needs: [deploy-infra-staging, deploy-apps-staging, deploy-slack-notifier-staging, run-e2e-tests, publish-schema-npm, publish] if: ${{ always() && failure() && !cancelled() }} - uses: ./.github/workflows/action-send-ci-cd-status-slack-message.yml + uses: ./.github/workflows/workflow-send-ci-cd-status-slack-message.yml with: environment: staging infra_status: ${{ needs.deploy-infra-staging.result }} diff --git a/.github/workflows/dispatch-apps.yml b/.github/workflows/dispatch-apps.yml index e9995d26f..cadcfc066 100644 --- a/.github/workflows/dispatch-apps.yml +++ b/.github/workflows/dispatch-apps.yml @@ -28,15 +28,15 @@ concurrency: jobs: generate-git-short-sha: name: Generate git short sha - uses: ./.github/workflows/action-generate-git-short-sha.yml + uses: ./.github/workflows/workflow-generate-git-short-sha.yml get-current-version: name: Get current version - uses: ./.github/workflows/action-get-current-version.yml + uses: ./.github/workflows/workflow-get-current-version.yml check-for-changes: name: Check for changes - uses: ./.github/workflows/action-check-for-changes.yml + uses: ./.github/workflows/workflow-check-for-changes.yml deploy-apps: name: Deploy apps to ${{ inputs.environment }} @@ -44,7 +44,7 @@ jobs: - generate-git-short-sha - get-current-version - check-for-changes - uses: ./.github/workflows/action-deploy-apps.yml + uses: ./.github/workflows/workflow-deploy-apps.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} diff --git a/.github/workflows/dispatch-infrastructure.yml b/.github/workflows/dispatch-infrastructure.yml index 912089c46..997b78612 100644 --- a/.github/workflows/dispatch-infrastructure.yml +++ b/.github/workflows/dispatch-infrastructure.yml @@ -23,12 +23,12 @@ concurrency: jobs: generate-git-short-sha: name: Generate git short sha - uses: ./.github/workflows/action-generate-git-short-sha.yml + uses: ./.github/workflows/workflow-generate-git-short-sha.yml deploy-infra: name: Deploy infra to ${{ inputs.environment }} needs: [generate-git-short-sha] - uses: ./.github/workflows/action-deploy-infra.yml + uses: ./.github/workflows/workflow-deploy-infra.yml secrets: AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} diff --git a/.github/workflows/dispatch-k6-tests.yml b/.github/workflows/dispatch-k6-tests.yml index 6a531603b..edede87a6 100644 --- a/.github/workflows/dispatch-k6-tests.yml +++ b/.github/workflows/dispatch-k6-tests.yml @@ -23,7 +23,7 @@ on: jobs: k6-test: name: "Run K6 tests" - uses: ./.github/workflows/action-run-k6-tests.yml + uses: ./.github/workflows/workflow-run-k6-tests.yml secrets: TOKEN_GENERATOR_USERNAME: ${{ secrets.TOKEN_GENERATOR_USERNAME }} TOKEN_GENERATOR_PASSWORD: ${{ secrets.TOKEN_GENERATOR_PASSWORD }} diff --git a/.github/workflows/action-build-and-test.yml b/.github/workflows/workflow-build-and-test.yml similarity index 100% rename from .github/workflows/action-build-and-test.yml rename to .github/workflows/workflow-build-and-test.yml diff --git a/.github/workflows/action-build-infrastructure.yml b/.github/workflows/workflow-build-infrastructure.yml similarity index 100% rename from .github/workflows/action-build-infrastructure.yml rename to .github/workflows/workflow-build-infrastructure.yml diff --git a/.github/workflows/action-check-for-changes.yml b/.github/workflows/workflow-check-for-changes.yml similarity index 100% rename from .github/workflows/action-check-for-changes.yml rename to .github/workflows/workflow-check-for-changes.yml diff --git a/.github/workflows/action-delete-deployments.yml b/.github/workflows/workflow-delete-deployments.yml similarity index 100% rename from .github/workflows/action-delete-deployments.yml rename to .github/workflows/workflow-delete-deployments.yml diff --git a/.github/workflows/action-deploy-apps.yml b/.github/workflows/workflow-deploy-apps.yml similarity index 100% rename from .github/workflows/action-deploy-apps.yml rename to .github/workflows/workflow-deploy-apps.yml diff --git a/.github/workflows/action-deploy-function.yml b/.github/workflows/workflow-deploy-function.yml similarity index 100% rename from .github/workflows/action-deploy-function.yml rename to .github/workflows/workflow-deploy-function.yml diff --git a/.github/workflows/action-deploy-infra.yml b/.github/workflows/workflow-deploy-infra.yml similarity index 100% rename from .github/workflows/action-deploy-infra.yml rename to .github/workflows/workflow-deploy-infra.yml diff --git a/.github/workflows/action-generate-git-short-sha.yml b/.github/workflows/workflow-generate-git-short-sha.yml similarity index 100% rename from .github/workflows/action-generate-git-short-sha.yml rename to .github/workflows/workflow-generate-git-short-sha.yml diff --git a/.github/workflows/action-get-current-version.yml b/.github/workflows/workflow-get-current-version.yml similarity index 100% rename from .github/workflows/action-get-current-version.yml rename to .github/workflows/workflow-get-current-version.yml diff --git a/.github/workflows/action-publish-schema.yml b/.github/workflows/workflow-publish-schema.yml similarity index 100% rename from .github/workflows/action-publish-schema.yml rename to .github/workflows/workflow-publish-schema.yml diff --git a/.github/workflows/action-publish.yml b/.github/workflows/workflow-publish.yml similarity index 100% rename from .github/workflows/action-publish.yml rename to .github/workflows/workflow-publish.yml diff --git a/.github/workflows/action-run-k6-tests.yml b/.github/workflows/workflow-run-k6-tests.yml similarity index 100% rename from .github/workflows/action-run-k6-tests.yml rename to .github/workflows/workflow-run-k6-tests.yml diff --git a/.github/workflows/action-send-ci-cd-status-slack-message.yml b/.github/workflows/workflow-send-ci-cd-status-slack-message.yml similarity index 100% rename from .github/workflows/action-send-ci-cd-status-slack-message.yml rename to .github/workflows/workflow-send-ci-cd-status-slack-message.yml diff --git a/README.md b/README.md index 4be3517b5..09f6fdc17 100644 --- a/README.md +++ b/README.md @@ -271,11 +271,11 @@ This workflow facilitates the deployment of infrastructure to the specified envi ### GitHub Actions Naming conventions for GitHub Actions: -- `action-*.yml`: Reusable workflows +- `workflow-*.yml`: Reusable workflows - `ci-cd-*.yml`: Workflows that are triggered by an event - `dispatch-*.yml`: Workflows that are dispatchable -The `action-check-for-changes.yml` workflow uses the `tj-actions/changed-files` action to check which files have been altered since last commit or tag. We use this filter to ensure we only deploy backend code or infrastructure if the respective files have been altered. +The `workflow-check-for-changes.yml` workflow uses the `tj-actions/changed-files` action to check which files have been altered since last commit or tag. We use this filter to ensure we only deploy backend code or infrastructure if the respective files have been altered. ### Infrastructure