Skip to content

Commit

Permalink
feat: auto changelog action added
Browse files Browse the repository at this point in the history
  • Loading branch information
theprashantyadav committed May 4, 2023
1 parent a9a4fec commit fa16b9e
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: changelog
permissions: write-all

on:
push:
tags:
- "*"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
call-workflow-changelog:
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
with:
branch: 'master'
21 changes: 19 additions & 2 deletions .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,28 @@ jobs:
uses: aquasecurity/tfsec-sarif-action@v0.1.0
with:
sarif_file: tfsec.sarif
working_directory: _example
working_directory: ./_example/
full_repo_scan: true

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v1
with:
# Path to SARIF file relative to the root of the repository
sarif_file: tfsec.sarif
sarif_file: tfsec.sarif

- name: tfsec commenter for PR
uses: tfsec/tfsec-pr-commenter-action@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB}}
working_directory: ./_example/


- name: 'Terraform security scan Advanced'
uses: triat/terraform-security-scan@v3.0.3
if: github.event_name == 'pull_request'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB}}
tfsec_actions_working_dir: ./_example/
tfsec_actions_comment: true
tfsec_output_format: sarif
continue-on-error: true
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.0] - 2022-12-30
### :bug: Bug Fixes
- [`a9a4fec`](https://github.com/clouddrove/terraform-aws-waf/commit/a9a4fecee1bf763fa94d9ea1c044c32e1a5d217e) - update README.md.


## [0.15.0] - 2022-05-23
### :bug: Bug Fixes
- [`930899e`](https://github.com/clouddrove/terraform-aws-waf/commit/930899ed94b8cdacc55ca8917c7b69c457e3450a) - update github-action License update
- [`b5abf33`](https://github.com/clouddrove/terraform-aws-waf/commit/b5abf334594b300e1f5ad3678f1e3d45fc98480c) - Update main.tf
- [`0a960b3`](https://github.com/clouddrove/terraform-aws-waf/commit/0a960b38a13053155d477a98472aaa2facc842c5) - new terraform latest version



[0.15.0]: https://github.com/clouddrove/terraform-aws-waf/compare/0.15.0...master
[1.3.0]: https://github.com/clouddrove/terraform-aws-waf/releases/tag/1.3.0

0 comments on commit fa16b9e

Please sign in to comment.