diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml deleted file mode 100644 index 7973a885..00000000 --- a/.github/workflows/automerge.yml +++ /dev/null @@ -1,31 +0,0 @@ - -name: Automerge - -on: - pull_request: - types: - - labeled - - unlabeled - - synchronize - - opened - - edited - - ready_for_review - - reopened - - unlocked - pull_request_review: - types: - - submitted - check_suite: - types: - - completed - status: {} - -jobs: - automerge: - runs-on: ubuntu-latest - steps: - - name: automerge - uses: "pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a" - env: - GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - MERGE_METHOD: "squash" diff --git a/.github/workflows/nodejs.yml b/.github/workflows/pull-request-manager.yml similarity index 85% rename from .github/workflows/nodejs.yml rename to .github/workflows/pull-request-manager.yml index 784e0c05..081e8ca8 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/pull-request-manager.yml @@ -1,11 +1,9 @@ # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions -name: Node.js CI +name: Pull Request Manager on: - push: - branches: [ master ] pull_request: branches: [ master ] @@ -16,7 +14,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [14] steps: - uses: actions/checkout@v2 @@ -25,7 +23,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - run: yarn - - run: yarn build + - run: yarn build - run: yarn lint - run: yarn test env: diff --git a/.kodiak.toml b/.kodiak.toml new file mode 100644 index 00000000..f05f4e0c --- /dev/null +++ b/.kodiak.toml @@ -0,0 +1,4 @@ +version = 1 +auto_approve_usernames = ["dependabot"] +merge.automerge_label = ['dependencies', 'automerge 🚀'] +update.autoupdate_label = 'autoupdate 🔁' diff --git a/.nvmrc b/.nvmrc index 48082f72..8351c193 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -12 +14 diff --git a/dist/jquery.stickybits.js b/dist/jquery.stickybits.js index 636a30c3..4888df12 100644 --- a/dist/jquery.stickybits.js +++ b/dist/jquery.stickybits.js @@ -1,6 +1,6 @@ /** stickybits - Stickybits is a lightweight alternative to `position: sticky` polyfills - @version v3.7.7 + @version v3.7.8 @link https://github.com/yowainwright/stickybits#readme @author Jeff Wainwright (https://jeffry.in) @license MIT @@ -88,7 +88,7 @@ var _this = this; var o = typeof obj !== 'undefined' ? obj : {}; - this.version = '3.7.7'; + this.version = '3.7.8'; this.userAgent = window.navigator.userAgent || 'no `userAgent` provided by the browser'; this.props = { customStickyChangeNumber: o.customStickyChangeNumber || null, diff --git a/dist/jquery.stickybits.min.js b/dist/jquery.stickybits.min.js index 2da7b1d4..52cf0a14 100644 --- a/dist/jquery.stickybits.min.js +++ b/dist/jquery.stickybits.min.js @@ -1,8 +1,8 @@ /** stickybits - Stickybits is a lightweight alternative to `position: sticky` polyfills - @version v3.7.7 + @version v3.7.8 @link https://github.com/yowainwright/stickybits#readme @author Jeff Wainwright (https://jeffry.in) @license MIT **/ -!function(t){"function"==typeof define&&define.amd?define(t):t()}(function(){"use strict";function x(){return(x=Object.assign||function(t){for(var s=1;s (https://jeffry.in) @license MIT @@ -83,7 +83,7 @@ var Stickybits = /*#__PURE__*/function () { var _this = this; var o = typeof obj !== 'undefined' ? obj : {}; - this.version = '3.7.7'; + this.version = '3.7.8'; this.userAgent = window.navigator.userAgent || 'no `userAgent` provided by the browser'; this.props = { customStickyChangeNumber: o.customStickyChangeNumber || null, diff --git a/dist/stickybits.js b/dist/stickybits.js index a077ed5b..c586eb42 100644 --- a/dist/stickybits.js +++ b/dist/stickybits.js @@ -1,6 +1,6 @@ /** stickybits - Stickybits is a lightweight alternative to `position: sticky` polyfills - @version v3.7.7 + @version v3.7.8 @link https://github.com/yowainwright/stickybits#readme @author Jeff Wainwright (https://jeffry.in) @license MIT @@ -89,7 +89,7 @@ var _this = this; var o = typeof obj !== 'undefined' ? obj : {}; - this.version = '3.7.7'; + this.version = '3.7.8'; this.userAgent = window.navigator.userAgent || 'no `userAgent` provided by the browser'; this.props = { customStickyChangeNumber: o.customStickyChangeNumber || null, diff --git a/dist/stickybits.min.js b/dist/stickybits.min.js index 55e2da8c..ef48e378 100644 --- a/dist/stickybits.min.js +++ b/dist/stickybits.min.js @@ -1,8 +1,8 @@ /** stickybits - Stickybits is a lightweight alternative to `position: sticky` polyfills - @version v3.7.7 + @version v3.7.8 @link https://github.com/yowainwright/stickybits#readme @author Jeff Wainwright (https://jeffry.in) @license MIT **/ -!function(t,s){"object"==typeof exports&&"undefined"!=typeof module?module.exports=s():"function"==typeof define&&define.amd?define(s):(t=t||self).stickybits=s()}(this,function(){"use strict";function b(){return(b=Object.assign||function(t){for(var s=1;s (https://jeffry.in) @license MIT @@ -88,7 +88,7 @@ var _this = this; var o = typeof obj !== 'undefined' ? obj : {}; - this.version = '3.7.7'; + this.version = '3.7.8'; this.userAgent = window.navigator.userAgent || 'no `userAgent` provided by the browser'; this.props = { customStickyChangeNumber: o.customStickyChangeNumber || null, diff --git a/package.json b/package.json index 478b38e6..66b98fd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stickybits", - "version": "3.7.7", + "version": "3.7.8", "description": "Stickybits is a lightweight alternative to `position: sticky` polyfills", "main": "dist/stickybits.js", "module": "dist/stickybits.es.js",