Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧹 fix GitHub actions #142

Merged
merged 2 commits into from
Oct 19, 2023
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: 1 addition & 12 deletions .github/workflows/cla.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "CLA Assistant & License Check"
name: "CLA Assistant"
on:
issue_comment:
types: [created]
Expand All @@ -25,14 +25,3 @@ jobs:
branch: "main"
allowlist: mondoo-tools,github-actions[bot],dependabot[bot]

license-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Copywrite
uses: hashicorp/[email protected]

- name: Check Header Compliance
run: copywrite headers --plan
14 changes: 14 additions & 0 deletions .github/workflows/pr-test-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,21 @@ on:
- 'go.sum'

jobs:
license-check:
name: License Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Copywrite
uses: hashicorp/[email protected]

- name: Check Header Compliance
run: copywrite headers --plan

goreleaser:
name: GoReleaser
runs-on: self-hosted
env:
RUNNER_TYPE: "self-hosted"
Expand Down
3 changes: 3 additions & 0 deletions examples/github-actions/packer-build-scan.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) Mondoo, Inc.
# SPDX-License-Identifier: BUSL-1.1

name: Packer AMI Build and Scan

on:
Expand Down
Loading