Skip to content

Commit

Permalink
Merge pull request #2 from clouddrove/issue-362
Browse files Browse the repository at this point in the history
auto changelog action and changelog.md and dependabot.yml file added
  • Loading branch information
yadavprakash authored May 16, 2023
2 parents c0512d8 + 147703b commit 0ea8f0c
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 20 deletions.
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "terraform" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "terraform" # See documentation for possible values
directory: "_example/" # Location of package manifests
schedule:
interval: "weekly"

13 changes: 13 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: changelog
permissions: write-all
on:
push:
tags:
- "*"
workflow_dispatch:
jobs:
changelog:
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
secrets: inherit
with:
branch: 'master'
26 changes: 6 additions & 20 deletions .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,11 @@
name: tfsec
permissions: write-all
on:
pull_request:

workflow_dispatch:
jobs:
tfsec:
name: tfsec sarif report
runs-on: ubuntu-latest

steps:
- name: Clone repo
uses: actions/checkout@master

- name: tfsec
uses: aquasecurity/[email protected]
with:
sarif_file: tfsec.sarif
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
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@master
secrets: inherit
with:
working_directory: '.'
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# 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.0.0] - 2022-12-13
### :bug: Bug Fixes
- [`c0512d8`](https://github.com/clouddrove/terraform-gcp-Service-account/commit/c0512d8eb8ac9e8b214c53faade77a3bc4cbd9ad)- update code



[1.0.0]: https://github.com/clouddrove/terraform-gcp-Service-account/releases/tag/1.0.0

0 comments on commit 0ea8f0c

Please sign in to comment.