https://github.com/railsware/github-actions
A collection of GitHub actions used at Railsware
https://github.com/railsware/github-actions
Last synced: 9 months ago
JSON representation
A collection of GitHub actions used at Railsware
- Host: GitHub
- URL: https://github.com/railsware/github-actions
- Owner: railsware
- License: mit
- Created: 2020-06-12T18:46:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-04T16:00:29.000Z (about 1 year ago)
- Last Synced: 2025-03-29T19:42:03.327Z (10 months ago)
- Language: JavaScript
- Size: 6.22 MB
- Stars: 7
- Watchers: 25
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Railsware Github Actions
A collection of GitHub actions used at Railsware
- [fetch-task-defintion](/fetch-task-definition/README.md) - fetch a task definition from AWS Elastic Container Service
- [read-from-ssm-param-store](/read-from-ssm-param-store/README.md) - retrieve information about parameters in a specific hierarchy
- [run-ecs-task](/run-ecs-task/README.md) - run a one-off task on AWS Elastic Container Service
---
## running action on local machine
- `yarn run_action --action name --param-1 value1 --param-2 value2 --param-3 value`
- `name` action name to run
- `param-x` - param like they specified in action.yml
- i.e when using credential profiles it could be like following:
```bash
ACTIONS_RUNNER_DEBUG=true AWS_SDK_LOAD_CONFIG=1 AWS_PROFILE=my-work-profile AWS_REGION=us-east-1 yarn run_action \
--action run-ecs-task \
--cluster my-cluster \
--service my-service \
--container my-container \
--command 'echo "Hello World"' \
--task-definition 'my_task_definition_arn' \
--wait-for-completion true \
--show-raw-output false
```
[Railsware](https://railsware.com)