chore(deps): update slackapi/slack-github-action action to v2 (#1519) #867
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Main | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: write | |
id-token: write | |
jobs: | |
release-please: | |
name: Release please | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
id: release | |
with: | |
token: ${{ secrets.RELEASE_PLEASE_PAT }} | |
release-type: simple | |
generate-git-short-sha: | |
name: Generate git short sha | |
uses: ./.github/workflows/workflow-generate-git-short-sha.yml | |
get-current-version: | |
name: Get current version | |
uses: ./.github/workflows/workflow-get-current-version.yml | |
check-for-changes: | |
name: Check for changes | |
uses: ./.github/workflows/workflow-check-for-changes.yml | |
build-and-test: | |
name: Build and test backend | |
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/workflow-publish.yml | |
needs: | |
[ | |
get-current-version, | |
check-for-changes, | |
generate-git-short-sha, | |
build-and-test, | |
] | |
if: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasBackendChanges == 'true' }} | |
secrets: | |
GCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
dockerImageBaseName: ghcr.io/digdir/dialogporten- | |
version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} | |
deploy-infra: | |
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.hasInfraChanges == 'true' }} | |
uses: ./.github/workflows/workflow-deploy-infra.yml | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
AZURE_SOURCE_KEY_VAULT_NAME: ${{ secrets.AZURE_SOURCE_KEY_VAULT_NAME }} | |
AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID: ${{ secrets.AZURE_SOURCE_KEY_VAULT_SUBSCRIPTION_ID }} | |
AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP: ${{ secrets.AZURE_SOURCE_KEY_VAULT_RESOURCE_GROUP }} | |
AZURE_SOURCE_KEY_VAULT_SSH_JUMPER_SSH_PUBLIC_KEY: ${{ secrets.AZURE_SOURCE_KEY_VAULT_SSH_JUMPER_SSH_PUBLIC_KEY }} | |
with: | |
environment: test | |
region: norwayeast | |
version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} | |
deploy-apps: | |
name: Deploy apps to test | |
needs: | |
[ | |
get-current-version, | |
check-for-changes, | |
generate-git-short-sha, | |
publish, | |
deploy-infra, | |
] | |
# 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/workflow-deploy-apps.yml | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
# todo: consider resolving these in another way since they are created in the infra-step | |
AZURE_RESOURCE_GROUP_NAME: ${{ secrets.AZURE_RESOURCE_GROUP_NAME }} | |
AZURE_ENVIRONMENT_KEY_VAULT_NAME: ${{ secrets.AZURE_ENVIRONMENT_KEY_VAULT_NAME }} | |
AZURE_CONTAINER_APP_ENVIRONMENT_NAME: ${{ secrets.AZURE_CONTAINER_APP_ENVIRONMENT_NAME }} | |
AZURE_APP_INSIGHTS_CONNECTION_STRING: ${{ secrets.AZURE_APP_INSIGHTS_CONNECTION_STRING }} | |
AZURE_APP_CONFIGURATION_NAME: ${{ secrets.AZURE_APP_CONFIGURATION_NAME }} | |
AZURE_SERVICE_BUS_NAMESPACE_NAME: ${{ secrets.AZURE_SERVICE_BUS_NAMESPACE_NAME }} | |
with: | |
environment: test | |
region: norwayeast | |
version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} | |
runMigration: ${{ github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasMigrationChanges == 'true' }} | |
deploy-slack-notifier: | |
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/workflow-deploy-function.yml | |
secrets: | |
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | |
# todo: resolve this automatically, or use tags | |
AZURE_FUNCTION_APP_NAME: ${{ secrets.AZURE_SLACK_NOTIFIER_FUNCTION_APP_NAME }} | |
with: | |
function-app-name: "slack-notifier" | |
function-project-path: "./src/Digdir.Tool.Dialogporten.SlackNotifier" | |
environment: test | |
publish-schema-npm: | |
name: Deploy schema npm package | |
needs: [check-for-changes, get-current-version, generate-git-short-sha, deploy-apps] | |
if: ${{ always() && !failure() && !cancelled() && (github.event_name == 'workflow_dispatch' || needs.check-for-changes.outputs.hasSchemaChanges == 'true') }} | |
uses: ./.github/workflows/workflow-publish-schema.yml | |
with: | |
version: ${{ needs.get-current-version.outputs.version }}-${{ needs.generate-git-short-sha.outputs.gitShortSha }} | |
secrets: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run-e2e-tests: | |
name: "Run K6 functional end-to-end tests" | |
# 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, check-for-changes] | |
uses: ./.github/workflows/workflow-run-k6-tests.yml | |
secrets: | |
TOKEN_GENERATOR_USERNAME: ${{ secrets.TOKEN_GENERATOR_USERNAME }} | |
TOKEN_GENERATOR_PASSWORD: ${{ secrets.TOKEN_GENERATOR_PASSWORD }} | |
with: | |
environment: test | |
apiVersion: v1 | |
testSuitePath: tests/k6/suites/all-single-pass.js | |
permissions: | |
checks: write | |
pull-requests: write | |
send-slack-message-on-failure: | |
name: Send Slack message on failure | |
needs: [ | |
deploy-infra, | |
deploy-apps, | |
deploy-slack-notifier, | |
run-e2e-tests, | |
publish-schema-npm, | |
publish, | |
build-and-test, | |
] | |
if: ${{ always() && failure() && !cancelled() }} | |
uses: ./.github/workflows/workflow-send-ci-cd-status-slack-message.yml | |
with: | |
environment: test | |
infra_status: ${{ needs.deploy-infra.result }} | |
apps_status: ${{ needs.deploy-apps.result }} | |
slack_notifier_status: ${{ needs.deploy-slack-notifier.result }} | |
e2e_tests_status: ${{ needs.run-e2e-tests.result }} | |
schema_npm_status: ${{ needs.publish-schema-npm.result }} | |
publish_status: ${{ needs.publish.result }} | |
build_and_test_status: ${{ needs.build-and-test.result }} | |
secrets: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
SLACK_CHANNEL_ID: ${{ secrets.SLACK_CHANNEL_ID_FOR_CI_CD_STATUS }} |