mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-10 06:33:06 +08:00
chore: branding cleaning
Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
This commit is contained in:
parent
4e1d048b27
commit
2daef55cd7
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@ -41,7 +41,7 @@ updates:
|
|||||||
- package-ecosystem: npm
|
- package-ecosystem: npm
|
||||||
directory: "/"
|
directory: "/"
|
||||||
open-pull-requests-limit: 20
|
open-pull-requests-limit: 20
|
||||||
versioning-strategy: widen
|
versioning-strategy: increase
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
day: friday
|
day: friday
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
20.9.0
|
20.19.3
|
||||||
|
|||||||
@ -9,4 +9,4 @@ USER ${UID}:${GID}
|
|||||||
ENV RUN_LOCAL=true
|
ENV RUN_LOCAL=true
|
||||||
ENV USE_FIND_ALGORITHM=true
|
ENV USE_FIND_ALGORITHM=true
|
||||||
ENV LOG_LEVEL=WARN
|
ENV LOG_LEVEL=WARN
|
||||||
ENV LOG_FILE="../logs"
|
ENV LOG_FILE="/github/home/logs"
|
||||||
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
|||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright Hoverkraft
|
Copyright hoverkraft
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
this software and associated documentation files (the "Software"), to deal in
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
name: "Docker Compose Action"
|
name: "Docker Compose Action"
|
||||||
description: "This action runs your compose file(s) and clean up before action finished"
|
description: "This action runs your compose file(s) and clean up before action finished"
|
||||||
author: "Hoverkraft"
|
author: "hoverkraft"
|
||||||
branding:
|
branding:
|
||||||
icon: anchor
|
icon: anchor
|
||||||
color: gray-dark
|
color: blue
|
||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
docker-flags:
|
docker-flags:
|
||||||
|
|||||||
32
package.json
32
package.json
@ -2,9 +2,10 @@
|
|||||||
"name": "compose-action",
|
"name": "compose-action",
|
||||||
"description": "Docker Compose Action",
|
"description": "Docker Compose Action",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"author": "",
|
"author": "hoverkraft",
|
||||||
"private": true,
|
"license": "MIT",
|
||||||
"homepage": "https://github.com/hoverkraft-tech/compose-action",
|
"homepage": "https://github.com/hoverkraft-tech/compose-action",
|
||||||
|
"private": true,
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
|
"url": "git+https://github.com/hoverkraft-tech/compose-action.git"
|
||||||
@ -22,6 +23,19 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20"
|
"node": ">=20"
|
||||||
},
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@actions/core": "^1.11.1",
|
||||||
|
"@actions/github": "^6.0.1",
|
||||||
|
"@actions/tool-cache": "^2.0.2",
|
||||||
|
"@octokit/action": "^8.0.2",
|
||||||
|
"docker-compose": "^1.2.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@ts-dev-tools/core": "^1.6.2",
|
||||||
|
"@vercel/ncc": "^0.38.3",
|
||||||
|
"eslint-plugin-github": "^6.0.0",
|
||||||
|
"eslint-plugin-jsonc": "^2.20.1"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"package": "npm run package:index && npm run package:post",
|
"package": "npm run package:index && npm run package:post",
|
||||||
"package:index": "ncc build src/index.ts -o dist --license licenses.txt",
|
"package:index": "ncc build src/index.ts -o dist --license licenses.txt",
|
||||||
@ -38,7 +52,6 @@
|
|||||||
"test:ci": "npm run test:cov --runInBand",
|
"test:ci": "npm run test:cov --runInBand",
|
||||||
"prepare": "ts-dev-tools install"
|
"prepare": "ts-dev-tools install"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
|
||||||
"jest": {
|
"jest": {
|
||||||
"preset": "ts-jest",
|
"preset": "ts-jest",
|
||||||
"verbose": true,
|
"verbose": true,
|
||||||
@ -71,19 +84,6 @@
|
|||||||
"**/src/**/*.[jt]s?(x)"
|
"**/src/**/*.[jt]s?(x)"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
|
||||||
"@actions/core": "^1.11.1",
|
|
||||||
"@actions/github": "^6.0.1",
|
|
||||||
"@actions/tool-cache": "^2.0.2",
|
|
||||||
"@octokit/action": "^8.0.2",
|
|
||||||
"docker-compose": "^1.2.0"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@ts-dev-tools/core": "^1.6.2",
|
|
||||||
"@vercel/ncc": "^0.38.3",
|
|
||||||
"eslint-plugin-github": "^6.0.0",
|
|
||||||
"eslint-plugin-jsonc": "^2.20.1"
|
|
||||||
},
|
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"root": true,
|
"root": true,
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user