Update status for email when failed delivery #182
Workflow file for this run
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: Notifcations Email Scan | |
on: | |
schedule: | |
- cron: '0 8 * * 1,4' | |
push: | |
branches: [ main ] | |
paths: | |
- 'src/**' | |
- 'Dockerfile' | |
pull_request: | |
branches: [ main ] | |
types: [opened, synchronize, reopened] | |
paths: | |
- 'src/**' | |
- 'Dockerfile' | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker build . --tag altinn-notifications-email:${{github.sha}} | |
- uses: Azure/[email protected] | |
with: | |
image-name: altinn-notifications-email:${{ github.sha }} | |
env: | |
DOCKLE_HOST: "unix:///var/run/docker.sock" |