-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
30 lines (29 loc) · 765 Bytes
/
update-html.yml
File metadata and controls
30 lines (29 loc) · 765 Bytes
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
name: update-html
run-name: Update dash html components attributes
on:
schedule:
- cron: 10 0 1 * *
workflow_dispatch:
inputs:
name:
description: Name of the run
required: false
type: string
jobs:
update-attributes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: dev
- uses: actions/setup-node@v3
- name: Extract elements
working-directory: ./components/dash-html-components
run: |
npm ci
npm run extract
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
commit-message: Update Dash HTML elements & attributes.
body: Automated HTML attributes update.