chore(config): migrate renovate config (#25) #235
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: tofu | |
on: | |
push: | |
branches: | |
- "main" | |
schedule: | |
- cron: "0 4 * * *" | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
linode: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: opentofu/setup-opentofu@v1 | |
- env: | |
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }} | |
PG_CONN_STR: ${{ secrets.PG_CONN_STR }} | |
run: | | |
tofu -chdir=./terraform/linode init -upgrade | |
- env: | |
LINODE_TOKEN: ${{ secrets.LINODE_TOKEN }} | |
PG_CONN_STR: ${{ secrets.PG_CONN_STR }} | |
run: | | |
tofu -chdir=./terraform/linode \ | |
apply -auto-approve -input=false -lock=true -no-color \ | |
-var=kubeconfig=lke.yaml | |
- uses: rjstone/discord-webhook-notify@v1 | |
if: success() | |
with: | |
severity: info | |
details: "[linode] apply succesfull" | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
- uses: rjstone/discord-webhook-notify@v1 | |
if: failure() | |
with: | |
severity: error | |
details: "[linode] apply failed" | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
- uses: rjstone/discord-webhook-notify@v1 | |
if: cancelled() | |
with: | |
severity: warn | |
details: "[linode] apply cancelled" | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# oci: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: opentofu/setup-opentofu@v1 | |
# # TODO: env vars missing | |
# - run: | | |
# tofu -chdir=./terraform/oci init -upgrade | |
# - run: | | |
# tofu -chdir=./terraform/oci \ | |
# apply -auto-approve -input=false -lock=true -no-color | |
# - uses: rjstone/discord-webhook-notify@v1 | |
# if: success() | |
# with: | |
# severity: info | |
# details: "[oci] apply succesfull" | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# - uses: rjstone/discord-webhook-notify@v1 | |
# if: failure() | |
# with: | |
# severity: error | |
# details: "[oci] apply failed" | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# - uses: rjstone/discord-webhook-notify@v1 | |
# if: cancelled() | |
# with: | |
# severity: warn | |
# details: "[oci] apply cancelled" | |
# webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} |