From 3d89a053427df42d26142e507206c746007238f8 Mon Sep 17 00:00:00 2001 From: Sharwin24 Date: Wed, 1 Jan 2025 21:05:04 -0800 Subject: [PATCH] Deleting autoprefixer workflow --- .github/workflows/autoprefixer.yml | 35 ------------------------------ 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/autoprefixer.yml diff --git a/.github/workflows/autoprefixer.yml b/.github/workflows/autoprefixer.yml deleted file mode 100644 index 0717b2a..0000000 --- a/.github/workflows/autoprefixer.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Autoprefixer -on: - push: - branches: - - main -jobs: - autoprefixer: - runs-on: ubuntu-latest - steps: - - name: Checkout to latest commit - uses: actions/checkout@v4.2.2 - - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: "20.x" - - - name: Run autoprefixer - run: | - npm install postcss postcss-cli autoprefixer --save-dev - npm run autoprefixer - - - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 - with: - branch: autoprefixer - branch-suffix: timestamp - commit-message: add vendor specific css prefixes - title: "Update and run autoprefixer" - body: | - 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). - labels: "enhancement,automerge" - reviewers: hossainemruz