├── .dockerignore ├── .editorconfig ├── .github ├── actions │ └── publish │ │ └── action.yml └── workflows │ └── flowzone.yml ├── .gitignore ├── .huskyrc ├── .lintstagedrc ├── .versionbot └── CHANGELOG.yml ├── CHANGELOG.md ├── DEVELOPMENT.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh ├── events ├── close-pr │ ├── env.example │ └── event.json ├── open-pr │ ├── env.example │ └── event.json ├── push │ ├── env.example │ └── event.json └── sync-pr │ ├── env.example │ └── event.json ├── package.json ├── src ├── action.ts ├── balena-utils.ts ├── git.ts ├── github-utils.ts ├── main.ts ├── types.ts └── versionbot-utils.ts ├── tests ├── .mocharc.fast.js ├── .mocharc.js ├── config │ └── fixtures.ts ├── data │ └── build.log ├── lib │ └── sleep.ts └── src │ ├── action.spec.ts │ ├── balena-utils.spec.ts │ ├── git.spec.ts │ ├── github-utils.spec.ts │ ├── main.spec.ts │ └── versionbot-utils.spec.ts ├── tsconfig.json ├── tslint.json └── versionist.conf.js /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | Dockerfile 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/actions/publish/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.github/actions/publish/action.yml -------------------------------------------------------------------------------- /.github/workflows/flowzone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.github/workflows/flowzone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- 1 | { 2 | "hooks": { 3 | "pre-commit": "lint-staged" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.versionbot/CHANGELOG.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/.versionbot/CHANGELOG.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /events/close-pr/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/close-pr/env.example -------------------------------------------------------------------------------- /events/close-pr/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/close-pr/event.json -------------------------------------------------------------------------------- /events/open-pr/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/open-pr/env.example -------------------------------------------------------------------------------- /events/open-pr/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/open-pr/event.json -------------------------------------------------------------------------------- /events/push/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/push/env.example -------------------------------------------------------------------------------- /events/push/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/push/event.json -------------------------------------------------------------------------------- /events/sync-pr/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/sync-pr/env.example -------------------------------------------------------------------------------- /events/sync-pr/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/events/sync-pr/event.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/package.json -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/action.ts -------------------------------------------------------------------------------- /src/balena-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/balena-utils.ts -------------------------------------------------------------------------------- /src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/git.ts -------------------------------------------------------------------------------- /src/github-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/github-utils.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/versionbot-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/src/versionbot-utils.ts -------------------------------------------------------------------------------- /tests/.mocharc.fast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/.mocharc.fast.js -------------------------------------------------------------------------------- /tests/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/.mocharc.js -------------------------------------------------------------------------------- /tests/config/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/config/fixtures.ts -------------------------------------------------------------------------------- /tests/data/build.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/data/build.log -------------------------------------------------------------------------------- /tests/lib/sleep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/lib/sleep.ts -------------------------------------------------------------------------------- /tests/src/action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/action.spec.ts -------------------------------------------------------------------------------- /tests/src/balena-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/balena-utils.spec.ts -------------------------------------------------------------------------------- /tests/src/git.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/git.spec.ts -------------------------------------------------------------------------------- /tests/src/github-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/github-utils.spec.ts -------------------------------------------------------------------------------- /tests/src/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/main.spec.ts -------------------------------------------------------------------------------- /tests/src/versionbot-utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tests/src/versionbot-utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/tslint.json -------------------------------------------------------------------------------- /versionist.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balena-io/deploy-to-balena-action/HEAD/versionist.conf.js --------------------------------------------------------------------------------