forked from webpack/webpack
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 966 Bytes
/
examples.yml
File metadata and controls
41 lines (37 loc) · 966 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
31
32
33
34
35
36
37
38
39
40
41
name: "Update examples"
on:
schedule:
- cron: "0 0 * * 0"
permissions:
contents: read
jobs:
examples:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn link --frozen-lockfile || true
- run: yarn link webpack --frozen-lockfile
- run: yarn build:examples
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.PAT }}
delete-branch: true
commit-message: |
docs: update examples
title: |
docs: update examples
body: |
Update examples.
This PR was autogenerated.
branch: update-examples