Skip to content

Commit b937419

Browse files
authored
Merge pull request #2 from clouddrove/issue-362
auto changelog action and changelog.md and dependabot.yml file added
2 parents cdef642 + 5d1682a commit b937419

File tree

4 files changed

+39
-21
lines changed

4 files changed

+39
-21
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "" # See documentation for possible values
8+
- package-ecosystem: "terraform" # See documentation for possible values
99
directory: "/" # Location of package manifests
1010
schedule:
1111
interval: "weekly"
12+
- package-ecosystem: "terraform" # See documentation for possible values
13+
directory: "_example/" # Location of package manifests
14+
schedule:
15+
interval: "weekly"
16+
17+

.github/workflows/changelog.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: changelog
2+
permissions: write-all
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
workflow_dispatch:
8+
jobs:
9+
changelog:
10+
uses: clouddrove/github-shared-workflows/.github/workflows/changelog.yml@master
11+
secrets: inherit
12+
with:
13+
branch: 'master'

.github/workflows/tfsec.yml

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
11
name: tfsec
2+
permissions: write-all
23
on:
34
pull_request:
4-
5+
workflow_dispatch:
56
jobs:
67
tfsec:
7-
name: tfsec sarif report
8-
runs-on: ubuntu-latest
9-
10-
steps:
11-
- name: Clone repo
12-
uses: actions/checkout@master
13-
14-
- name: tfsec
15-
uses: aquasecurity/[email protected]
16-
with:
17-
sarif_file: tfsec.sarif
18-
working_directory: _example
19-
full_repo_scan: true
20-
21-
- name: Upload SARIF file
22-
uses: github/codeql-action/upload-sarif@v1
23-
with:
24-
# Path to SARIF file relative to the root of the repository
25-
sarif_file: tfsec.sarif
8+
uses: clouddrove/github-shared-workflows/.github/workflows/tfsec.yml@master
9+
secrets: inherit
10+
with:
11+
working_directory: '.'

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [1.3.0] - 2023-05-16
8+
### :bug: Bug Fixes
9+
- [`cdef642`](https://github.com/clouddrove/terraform-gcp-gke/commit/cdef6420795a3da4c058962bdfc7aca5fa4afe0b)- Create dependabot.yml
10+
11+
12+
13+
[1.3.0]: https://github.com/clouddrove/terraform-gcp-gke/releases/tag/1.3.0

0 commit comments

Comments
 (0)