Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/workflows/auto_assignee.yml

This file was deleted.

13 changes: 8 additions & 5 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
---
name: Auto merge
on:
pull_request:
permissions:
contents: write
checks: read
pull-requests: write
jobs:
auto-merge:
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@1.4.0
uses: clouddrove/github-shared-workflows/.github/workflows/auto_merge.yml@master
with:
azure_cloud: true
tfchecks_azure: '["tf-lint / tflint"]'
secrets:
GITHUB: ${{ secrets.GITHUB }}
with:
tfcheck: 'tf-checks-complete-example / Check code format'
...
15 changes: 0 additions & 15 deletions .github/workflows/changelog.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/checkov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Security Scan

on:
pull_request:
branches: [master]
types: [opened, synchronize]

jobs:
checkov:
uses: clouddrove/github-shared-workflows/.github/workflows/checkov.yml@master
with:
directory: "."
continue_on_error: "true"
skip_check: 'CKV_TF_1'
16 changes: 16 additions & 0 deletions .github/workflows/pr_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: 'PR Validation'
on:
pull_request_target:
types:
- opened
- edited
- synchronize
- reopened

jobs:
pr-validation:
if: github.actor != 'dependabot[bot]'
uses: clouddrove/github-shared-workflows/.github/workflows/pr_checks.yml@master
secrets: inherit
with:
subjectPattern: '^.+$'
53 changes: 0 additions & 53 deletions .github/workflows/readme.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/stale_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Mark or close stale issues and PRs'

on:
schedule:
- cron: '0 0 * * 5' # Runs every Friday midnight
workflow_dispatch:

jobs:
call-shared-stale:
uses: clouddrove/github-shared-workflows/.github/workflows/stale_pr.yml@master
with:
days-before-issue-stale: 30
days-before-pr-stale: 30
days-before-issue-close: 10
days-before-pr-close: 10
13 changes: 13 additions & 0 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Tag Release

on:
pull_request:
types: [closed]

jobs:
release:
uses: clouddrove/github-shared-workflows/.github/workflows/tag-release.yml@master
with:
target_branch: master
secrets:
GITHUB: ${{ secrets.GITHUB_TOKEN }}
14 changes: 10 additions & 4 deletions .github/workflows/tf-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,17 @@ on:
pull_request:
workflow_dispatch:
jobs:
tf-checks-complete-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.4.0
complete-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
with:
working_directory: './_examples/complete/'
tf-checks-basic-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@1.4.0
basic-example:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-checks.yml@master
with:
working_directory: './_examples/basic/'

# Seperate Job for TFlint workflow call
tf-lint:
uses: clouddrove/github-shared-workflows/.github/workflows/tf-lint.yml@master
secrets:
GITHUB: ${{ secrets.GITHUB }}
11 changes: 0 additions & 11 deletions .github/workflows/tflint.yml

This file was deleted.

12 changes: 0 additions & 12 deletions .github/workflows/tfsec.yml

This file was deleted.