项目作者: mooyoul

项目描述 :
Integrates Github Actions with AWS CloudWatch Logs
高级语言: TypeScript
项目地址: git://github.com/mooyoul/cloudwatch-logs-actions.git
创建时间: 2020-06-23T22:43:27Z
项目社区:https://github.com/mooyoul/cloudwatch-logs-actions

开源协议:MIT License

下载


cloudwatch-logs-actions

Build Status
Example Status
Semantic Release enabled
Renovate enabled
MIT license

GitHub action that integrates with Amazon CloudWatch Logs.

Example


Why?

I have an open sourced Backend Project, and I want to hide
deploy log to prevent sensitive information leak.

… but currently, There are no way to hide logs of Github Actions.
So, My idea is - forward stdout/stderr output to CloudWatch Logs without printing logs.

See below example for further details.

Example
  1. # ...
  2. jobs:
  3. job:
  4. runs-on: ubuntu-latest
  5. timeout-minutes: 5
  6. steps:
  7. - name: Deploy
  8. uses: mooyoul/cloudwatch-logs-actions@v1.1.5
  9. env:
  10. AWS_DEFAULT_REGION: us-east-1
  11. AWS_REGION: us-east-1
  12. AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
  13. AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
  14. with:
  15. group: my-open-project
  16. stream: ${{ gihub.sha }}
  17. retention: 14
  18. run: |
  19. # you can use multiline commands if needed
  20. npm run deploy:stage
  21. npm run deploy:prod
Input
  1. type Input = {
  2. // Cloudwatch Logs Region
  3. region: string;
  4. // Name of Log Group
  5. group: string;
  6. // Name of Log Stream
  7. stream: string;
  8. // The number of days to retain the log events in the specified log group.
  9. // Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, and 3653.
  10. retention?: string;
  11. // Which shell to use
  12. // Possible values are: sh, bash (default: sh)
  13. shell?: string;
  14. // Command to run, Supports multiple commands
  15. run: string;
  16. }
Output

None

License

MIT

See full license on mooyoul.mit-license.org