Merge pull request #49 from werf/fix-dismiss-action

fix: converge and dismiss actions should not require env param
This commit is contained in:
Alexey Igrychev
2021-12-17 13:26:27 +00:00
committed by GitHub
9 changed files with 11920 additions and 11920 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12,9 +12,9 @@ inputs:
version: version:
description: 'The certain version' description: 'The certain version'
required: false required: false
env: env: # TODO: Remove this deprecated werf option, which is not required anymore (use WERF_ENV variable instead)
description: 'Specific deployment environment' description: 'Specific deployment environment'
required: true required: false
github-token: github-token:
description: 'The GitHub token used to login and to interact with Docker Github Packages' description: 'The GitHub token used to login and to interact with Docker Github Packages'
default: ${{ github.token }} default: ${{ github.token }}

File diff suppressed because one or more lines are too long

View File

@@ -12,9 +12,9 @@ inputs:
version: version:
description: 'The certain version' description: 'The certain version'
required: false required: false
env: env: # TODO: Remove this deprecated werf option, which is not required anymore (use WERF_ENV variable instead)
description: 'Specific deployment environment' description: 'Specific deployment environment'
required: true required: false
github-token: github-token:
description: 'The GitHub token used to login and to interact with Docker Github Packages' description: 'The GitHub token used to login and to interact with Docker Github Packages'
default: ${{ github.token }} default: ${{ github.token }}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -34,7 +34,7 @@
"format": "prettier --write **/*.ts", "format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts", "format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts", "lint": "eslint src/**/*.ts",
"pack": "pack.sh", "pack": "./pack.sh",
"all": "npm run build && npm run format && npm run lint && npm run pack" "all": "npm run build && npm run format && npm run lint && npm run pack"
}, },
"repository": { "repository": {

File diff suppressed because one or more lines are too long