Skip to content

Commit 3752f4a

Browse files
committed
Fix scheduled upgrade workflow
1 parent f36cc2e commit 3752f4a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/schedule-upgrade.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,17 @@ on:
1010
# Run weekly on a Thursday at 6am
1111
schedule:
1212
- cron: "0 6 * * 4"
13+
# Allow manual executions
14+
workflow_dispatch:
1315

1416
jobs:
1517
test_upgrade:
1618
runs-on: ubuntu-latest
1719
if: github.repository == 'azimuth-cloud/azimuth-config'
1820
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v5
23+
1924
- name: Find latest tagged release
2025
id: get-tag
2126
run: >-
@@ -33,7 +38,7 @@ jobs:
3338
uses: slackapi/slack-github-action@v2.1.1
3439
with:
3540
webhook: "${{ secrets.SLACK_WEBHOOK_URL }}"
36-
webhook-type: incoming-webook
41+
webhook-type: incoming-webhook
3742
payload: |
3843
text: ":siren: Scheduled Azimuth upgrade test failed\n"${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}""
3944
if: ${{ failure() }}

0 commit comments

Comments
 (0)