forked from aiven/devportal
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 937 Bytes
/
cloud-list.yaml
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
name: Cloud - Create PR to update available list
on:
schedule:
- cron: "0 6 * * 2"
jobs:
cloud_list:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Update available cloud list
run: make cloud-list
- name: Create Pull Request
uses: peter-evans/create-pull-request@v4
with:
commit-message: Cloud - Update available list
title: Cloud - Update available list
body: Cloud - Update available list
base: main
labels: automated-pr, Clouds & Regions
branch: cloud-update-advanced-params
delete-branch: true