autoprefixer.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. name: Autoprefixer
  2. on:
  3. push:
  4. branches:
  5. - main
  6. jobs:
  7. autoprefixer:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - name: Checkout to latest commit
  11. uses: actions/checkout@v4.1.7
  12. - name: Setup Node
  13. uses: actions/setup-node@v4
  14. with:
  15. node-version: "20.x"
  16. - name: Run autoprefixer
  17. run: |
  18. npm install postcss postcss-cli autoprefixer --save-dev
  19. npm run autoprefixer
  20. - name: Create Pull Request
  21. uses: peter-evans/create-pull-request@v7
  22. with:
  23. branch: autoprefixer
  24. branch-suffix: timestamp
  25. commit-message: add vendor specific css prefixes
  26. title: "Update and run autoprefixer"
  27. body: |
  28. This PR runs [postcss/autoprefixer](https://github.com/postcss/autoprefixer) to update vendor specific CSS prefixes.
  29. >This PR has been created automatically by Github Action [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request).
  30. labels: "enhancement,automerge"
  31. reviewers: hossainemruz