-
-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (31 loc) · 1.06 KB
/
update-css-referential.yml
File metadata and controls
37 lines (31 loc) · 1.06 KB
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: Update CSS Referential
on:
schedule:
- cron: "0 0 * * 0" # Every Sunday at midnight
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
update-css-referential:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: ⚙️ Setup PHP, with composer and extensions
uses: ./.github/workflows/actions/setup-php
with:
php-version: 8.3
- name: Generate CSS Referential
run: composer run-script generate-css-referential
- name: Push changes and create pull request
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
branch: update-css-referential
add-paths: |
src/CssLint/Referential
sign-commits: true
signoff: true
title: "feat: update CSS Referential"
body: |
This pull request updates the CSS referential files in the `src/CssLint/Referential` directory.