-
Notifications
You must be signed in to change notification settings - Fork 120
51 lines (48 loc) · 1.56 KB
/
update-tutorials.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: "Scheduled jobs: Update How To Guides from examples repo"
on:
schedule:
- cron: '0 15 * * *'
workflow_dispatch:
jobs:
merge:
name: Update tutorials
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23.x
- name: Check out the repo
uses: actions/checkout@v4
with:
token: ${{ secrets.PULUMI_BOT_TOKEN }}
- name: Run mktutorial
run: |
./scripts/ci/mktutorial.sh
- name: Create a pull request
uses: peter-evans/create-pull-request@v3
with:
branch: tutorials/refresh
author: Pulumi Bot <[email protected]>
committer: Pulumi Bot <[email protected]>
title: Update tutorials
labels: "automation/merge"
commit-message: Update tutorials
token: ${{ secrets.PULUMI_BOT_TOKEN }}
body: |
Regenerate all tutorials based on the latest available content at https://github.com/pulumi/examples.
notify:
if: failure()
name: Send slack notification
runs-on: ubuntu-latest
needs: [merge]
steps:
- name: Slack Notification
uses: docker://sholung/action-slack-notify:v2.3.0
env:
SLACK_CHANNEL: registry-ops
SLACK_COLOR: "#F54242"
SLACK_MESSAGE: "update tutorials failure in pulumi/docs repo :meow_sad:"
SLACK_USERNAME: docsbot
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}
SLACK_ICON: https://www.pulumi.com/logos/brand/avatar-on-white.png