├── .eslintrc.json ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitkeep ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.d.ts ├── index.js └── src │ ├── action.d.ts │ ├── constants.d.ts │ ├── index.d.ts │ ├── types.d.ts │ └── utils.d.ts ├── images └── version-tracking.png ├── package.json ├── src ├── action.ts ├── constants.ts ├── index.ts ├── types.ts └── utils.ts ├── test-migrations ├── 0.1.0.js ├── 0.2.0.js ├── 0.2.1.js ├── 1.0.1.js ├── 1.1.101.js ├── 1.10.100.js ├── 1.10.102.js ├── 1.js ├── 2.0.1-alpha.2.js ├── 2.0.1-alpha.js ├── 2.0.1-beta.js ├── 2.0.1-rc.1.js ├── 2.0.1-rc.2.js ├── 2.js ├── v1.10.101.js └── v2.0.1-alpha.1.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/src/action.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/src/action.d.ts -------------------------------------------------------------------------------- /dist/src/constants.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/src/constants.d.ts -------------------------------------------------------------------------------- /dist/src/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/src/types.d.ts -------------------------------------------------------------------------------- /dist/src/utils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/dist/src/utils.d.ts -------------------------------------------------------------------------------- /images/version-tracking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/images/version-tracking.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/package.json -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test-migrations/0.1.0.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/0.2.0.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/0.2.1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/1.0.1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/1.1.101.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/1.10.100.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/1.10.102.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.0.1-alpha.2.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.0.1-alpha.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.0.1-beta.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.0.1-rc.1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.0.1-rc.2.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/2.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/v1.10.101.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /test-migrations/v2.0.1-alpha.1.js: -------------------------------------------------------------------------------- 1 | module.exports = function () {}; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contentful-userland/contentful-action/HEAD/yarn.lock --------------------------------------------------------------------------------