Update list of clouds #15
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: Update list of clouds | |
on: | |
schedule: | |
- cron: '0 8 1,15 * *' | |
workflow_dispatch: | |
jobs: | |
cloud_list: | |
name: Update list of clouds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Update available cloud list | |
run: make cloud-list | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: Cloud - Update available list | |
committer: GitHub <noreply@github.com> | |
author: GitHub <noreply@github.com> | |
title: Update list of clouds | |
body: Update list of clouds | |
base: main | |
labels: automated-pr | |
branch: cloud-update | |
delete-branch: true |