Disable Auto-prefixer action (#282)
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
This commit is contained in:
parent
23725c220c
commit
1a1bd8fe1c
1 changed files with 31 additions and 31 deletions
62
.github/workflows/autoprefixer.yml
vendored
62
.github/workflows/autoprefixer.yml
vendored
|
@ -1,35 +1,35 @@
|
||||||
name: Autoprefixer
|
# name: Autoprefixer
|
||||||
on:
|
# on:
|
||||||
push:
|
# push:
|
||||||
branches:
|
# branches:
|
||||||
- main
|
# - main
|
||||||
jobs:
|
# jobs:
|
||||||
autoprefixer:
|
# autoprefixer:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout to latest commit
|
# - name: Checkout to latest commit
|
||||||
uses: actions/checkout@v2.3.4
|
# uses: actions/checkout@v2.3.4
|
||||||
|
|
||||||
- name: Setup Node
|
# - name: Setup Node
|
||||||
uses: actions/setup-node@v2.1.5
|
# uses: actions/setup-node@v2.1.5
|
||||||
with:
|
# with:
|
||||||
node-version: "15.x"
|
# node-version: "15.x"
|
||||||
|
|
||||||
- name: Run autoprefixer
|
# - name: Run autoprefixer
|
||||||
run: |
|
# run: |
|
||||||
npm install postcss-cli autoprefixer --save-dev
|
# npm install postcss-cli autoprefixer --save-dev
|
||||||
npm run autoprefixer
|
# npm run autoprefixer
|
||||||
|
|
||||||
- name: Create Pull Request
|
# - name: Create Pull Request
|
||||||
uses: peter-evans/create-pull-request@v3.8.2
|
# uses: peter-evans/create-pull-request@v3.8.2
|
||||||
with:
|
# with:
|
||||||
branch: autoprefixer
|
# branch: autoprefixer
|
||||||
branch-suffix: timestamp
|
# branch-suffix: timestamp
|
||||||
commit-message: add vendor specific css prefixes
|
# commit-message: add vendor specific css prefixes
|
||||||
title: "Update and run autoprefixer"
|
# title: "Update and run autoprefixer"
|
||||||
body: |
|
# body: |
|
||||||
This PR runs [postcss/autoprefixer](https://github.com/postcss/autoprefixer) to update vendor specific CSS prefixes.
|
# This PR runs [postcss/autoprefixer](https://github.com/postcss/autoprefixer) to update vendor specific CSS prefixes.
|
||||||
|
|
||||||
>This PR has been created automatically by Github Action [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
|
# >This PR has been created automatically by Github Action [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
|
||||||
labels: "enhancement,automerge"
|
# labels: "enhancement,automerge"
|
||||||
reviewers: hossainemruz
|
# reviewers: hossainemruz
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue