Delete old cloudformation stacks #286
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: 'Delete old cloudformation stacks' | |
# Controls when the action will run - in this case triggered manually | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 1,13 * * *" | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "combine-prs" | |
delete-old-cloudformation-stacks: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
- name: Checkout local code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.BRANCH_NAME }} | |
fetch-depth: 0 | |
# using git commit sha for version of action to ensure we have stable version | |
- name: Install asdf | |
uses: asdf-vm/actions/setup@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 | |
with: | |
asdf_branch: v0.11.3 | |
- name: Cache asdf | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.asdf | |
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }} | |
restore-keys: | | |
${{ runner.os }}-asdf- | |
- name: Install asdf dependencies in .tool-versions | |
uses: asdf-vm/actions/install@05e0d2ed97b598bfce82fd30daf324ae0c4570e6 | |
with: | |
asdf_branch: v0.11.3 | |
env: | |
PYTHON_CONFIGURE_OPTS: --enable-shared | |
- name: make install | |
run: | | |
make install | |
- name: Configure AWS Credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: eu-west-2 | |
role-to-assume: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }} | |
role-session-name: github-actions | |
- name: delete stacks | |
shell: bash | |
working-directory: .github/scripts | |
run: ./delete_stacks.sh |