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@v2.3.4
  12. # - name: Setup Node
  13. # uses: actions/setup-node@v2.1.5
  14. # with:
  15. # node-version: "15.x"
  16. # - name: Run autoprefixer
  17. # run: |
  18. # npm install postcss-cli autoprefixer --save-dev
  19. # npm run autoprefixer
  20. # - name: Create Pull Request
  21. # uses: peter-evans/create-pull-request@v3.8.2
  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