Skip to content

Deploy and Destroy Workflows #16

Deploy and Destroy Workflows

Deploy and Destroy Workflows #16

name: "Deploy and Destroy Workflows"
on:
schedule:
- cron: '0 17 * * 1'
- cron: '0 18 * * 1'
- cron: '0 19 * * 1'
- cron: '0 20 * * 1'
- cron: '0 21 * * 1'
- cron: '0 22 * * 1'
jobs:
usecase_schedule:
name: "Trigger Actions Schedules"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Trigger Deploy workflow
run: gh workflow run waf-on-ce-aws-apply.yml --ref deploy-waf-aws-ce
if: github.event.schedule == '0 17 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Destroy workflow
run: gh workflow run waf-on-ce-aws-destroy.yml --ref destroy-waf-aws-ce
if: github.event.schedule == '0 18 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Deploy workflow
run: gh workflow run waf-re-apply.yml --ref deploy-waf-re
if: github.event.schedule == '0 19 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Destroy workflow
run: gh workflow run waf-re-destroy.yml --ref destroy-waf-re
if: github.event.schedule == '0 20 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Deploy workflow
run: gh workflow run waf-on-ce-aws-apply.yml --ref deploy-waf-aws-ce
if: github.event.schedule == '0 21 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Trigger Destroy workflow
run: gh workflow run waf-on-ce-aws-destroy.yml --ref destroy-waf-aws-ce
if: github.event.schedule == '0 22 * * 1'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}