Drift check #843
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: Drift check | |
on: | |
schedule: | |
# Run every day at 12 PM Europe/Oslo time | |
- cron: '0 12 * * *' | |
workflow_dispatch: | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
check-for-changes: | |
name: Check for changes (${{ matrix.project }} @ ${{ matrix.stack-name }}) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- project: core-infra | |
stack-name: bjerk/prod | |
- project: bjerk-io | |
stack-name: bjerk/prod | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Use Node LTS ✨ | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: pnpm | |
- uses: 'google-github-actions/setup-gcloud@v2' | |
with: | |
install_components: 'gke-gcloud-auth-plugin' | |
- name: Authenticate with Google 🔑 | |
uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} | |
- name: Install dependencies 📦️ | |
run: pnpm install --frozen-lockfile | |
- name: Run Pulumi 🚀 | |
uses: pulumi/actions@v4 | |
id: pulumi | |
env: | |
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} | |
with: | |
command: preview | |
refresh: true | |
stack-name: ${{ matrix.stack-name }} | |
work-dir: projects/${{ matrix.project }} | |
expect-no-changes: true | |
- uses: slackapi/slack-github-action@v1 | |
if: failure() | |
with: | |
payload: | | |
{ | |
"repository": "${{ github.repository }}", | |
"jobUrl": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}", | |
"message": "Drift check failed", | |
"details": ${{ toJSON(steps.pulumi.outputs.output) }} | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_DRIFTCHECK_WEBHOOK_URL }} |