-
Notifications
You must be signed in to change notification settings - Fork 22
37 lines (35 loc) · 1019 Bytes
/
vpat-create.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
name: VPAT Generate
on:
workflow_dispatch:
push:
branches:
- master
- fix-vpat-create
jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: 'master'
- uses: ./.github/actions/dependencies
with:
root: false
packages-react: false
packages-styles: false
- name: Generate VPAT file
uses: dequelabs/action-vpat-report@main
with:
product-name: Cauldron
output-file: vpats/{DATE}-{PRODUCT}.md
vpat-label: vpat
- uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'chore: Generate a VPAT'
branch: auto-generate-vpat-report
base: develop
title: 'chore: Generate a VPAT'
body: |
This patch generates a VPAT based on this repository's currently open issues.
This PR was opened by a robot :robot: :tada: