Skip to content

Commit

Permalink
docs: add license
Browse files Browse the repository at this point in the history
  • Loading branch information
Jlkan committed Apr 26, 2024
1 parent 4458986 commit adfeca8
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Selleo

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 the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,16 @@ Example usage with multiple paths:
paths: |
/ecs/app/production/
/ecs/app-config/production/
```
```

## LICENSE

See `LICENSE` file.

## About Selleo

![selleo](https://raw.githubusercontent.com/Selleo/selleo-resources/master/public/github_footer.png)

Software development teams with an entrepreneurial sense of ownership at their core delivering great digital products and building culture people want to belong to. We are a community of engaged co-workers passionate about crafting impactful web solutions which transform the way our clients do business.

All names and logos for [Selleo](https://selleo.com/about) are trademark of Selleo Labs Sp. z o.o. (formerly Selleo Sp. z o.o. Sp.k.)
7 changes: 5 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
name: Fetch parameter store secrets ARNs
description: Fetch parameter store secrets ARNs for task definition json
name: Amazon ECS "PRE-Render Task Definition Secrets" Action for GitHub Actions
description: Renders Parameter Store Secrets into ECS Task Definition.
branding:
icon: cloud
color: orange
inputs:
task_definition:
description: 'The path to the ECS task definition JSON file'
Expand Down
1 change: 0 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -59410,7 +59410,6 @@ async function run() {
const paths = core.getInput('paths', { required: true });
const taskDefinitionFile = core.getInput('task-definition', { required: true });
const envsParts = envs.split(/\s+/);
console.log(envsParts)
for (let i=0; i<envsParts.length; i++){
envsParts[i].trim();
}
Expand Down
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ async function run() {
const paths = core.getInput('paths', { required: true });
const taskDefinitionFile = core.getInput('task-definition', { required: true });
const envsParts = envs.split(/\s+/);
console.log(envsParts)
for (let i=0; i<envsParts.length; i++){
envsParts[i].trim();
}
Expand Down

0 comments on commit adfeca8

Please sign in to comment.