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
10 changes: 6 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Summary
# Changes

{FIXME}
## Issues

- #{FIXME}

# Details
## Summary

{FIXME}

# Changes in action
## Changes in action

{FIXME}
2 changes: 1 addition & 1 deletion LICENSE.md → .github/actions/scan-image/LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The UnLicense
The UnLicense

This is free and unencumbered software released into the public domain.

Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
The UnLicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org>
32 changes: 31 additions & 1 deletion .github/workflows/always.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,40 @@
name: "[C]ontinuous [I]ntegration"

on:
push:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

permissions:
contents: read

jobs:
lint:
uses: percebus/github-actions-npm/.github/workflows/npm_run_script.yml@main
uses: percebus/github-actions-npm/.github/workflows/run_script.yml@main
with:
script: lint

codeQL:
needs: lint
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language:
- actions

name: "CodeQL: ${{ matrix.language }}"
steps:
- uses: percebus/github-actions-common/.github/actions/checkout@main

- name: setup CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: CodeQL
uses: github/codeql-action/analyze@v3
17 changes: 17 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Pull Request

# "This run was triggered by the "push" event, which is unsupported.
# Please ensure you are using the "pull_request" event for this workflow."
on:
pull_request:

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

jobs:
audit:
uses: percebus/github-actions-npm/.github/workflows/dependency-review.yml@main
permissions:
contents: read
pull-requests: read
5 changes: 5 additions & 0 deletions .github/workflows/test_actions__scan-image.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Test actions/scan-image

on:
push:
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

# NOTE: Fixes "Error: Resource not accessible by integration"
permissions:
contents: read
Expand Down
26 changes: 26 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
The UnLicense

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.

In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to <https://unlicense.org>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# github-actions-containerization

[LICENSE](./LICENSE.md)
[![[C]ontinuous [I]ntegration](https://github.com/percebus/github-actions-containerization/actions/workflows/always.yml/badge.svg)](https://github.com/percebus/github-actions-containerization/actions/workflows/always.yml) [![Pull Request](https://github.com/percebus/github-actions-containerization/actions/workflows/pull_request.yml/badge.svg?event=pull_request)](https://github.com/percebus/github-actions-containerization/actions/workflows/pull_request.yml)

[![[C]ontinuous [I]ntegration](https://github.com/percebus/github-actions-containerization/actions/workflows/always.yml/badge.svg)](https://github.com/percebus/github-actions-containerization/actions/workflows/always.yml)
[`LICENSE`](./LICENSE)

github reusable actions &amp; workflows for containerization

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "github reusable actions and workflows for container images",
"main": "index.js",
"scripts": {
"prettier": "prettier .",
"prettier:write": "npm run prettier -- --write",
"prettier:check": "npm run prettier -- --check",
"_prettier": "prettier .",
"prettier:write": "npm run _prettier -- --write",
"prettier:check": "npm run _prettier -- --check",
"lint": "npm run prettier:check",
"style": "npm run prettier:write",
"poststyle": "npm run lint",
Expand All @@ -27,7 +27,7 @@
"image"
],
"author": "JCystems",
"license": "SEE LICENSE IN LICENSE.md",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/percebus/github-actions-containerization/issues"
},
Expand Down
Loading