Skip to content

Merge branch 'main' into N21-1269-roster-adaptation #3621

Merge branch 'main' into N21-1269-roster-adaptation

Merge branch 'main' into N21-1269-roster-adaptation #3621

Workflow file for this run

---
name: Auto-deployment for Branches
on:
push:
branches-ignore:
- dependabot/**
jobs:
branch_name:
runs-on: ubuntu-latest
outputs:
branch: ${{ steps.extract_branch.outputs.branch }}
steps:
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
id: extract_branch
deploy:
needs:
- branch_name
uses: ./.github/workflows/deploy.yml
with:
branch: ${{ needs.branch_name.outputs.branch }}
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
DEV_VAULT: ${{ secrets.DEV_VAULT }}
DEV_KUBE_CONFIG: ${{ secrets.DEV_KUBE_CONFIG }}
BINGO_REPO_TOKEN: ${{ secrets.BINGO_REPO_TOKEN }}
deploy-successful:
needs:
- deploy
runs-on: ubuntu-latest
steps:
- run: echo "deploy was successful"