From 038ad85d490ca9767aaa9f848381c6824a055702 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:17:15 -0500 Subject: [PATCH 01/16] docs(.github-actions): All other --- LICENSE => LICENSE.md | 2 ++ README.md | 15 +++++++++++++++ package-lock.json | 32 ++++++++++++++++++++++++++++++++ package.json | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 83 insertions(+) rename LICENSE => LICENSE.md (98%) create mode 100644 package-lock.json create mode 100644 package.json diff --git a/LICENSE b/LICENSE.md similarity index 98% rename from LICENSE rename to LICENSE.md index fdddb29..f5f68e3 100644 --- a/LICENSE +++ b/LICENSE.md @@ -1,3 +1,5 @@ +# The UnLicense + This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or diff --git a/README.md b/README.md index 03adc2a..cacd8be 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,17 @@ # github-actions + GitHub re-usable Actions & Workflows + +| Name | CI | Trigger 1x | dependency-review | Tests | semantic-release | CodeQL | +| ------------------------------------------------------------------------------- | --- | ---------- | ----------------- | ----- | ---------------- | ------ | +| [common](https://github.com/percebus/github-actions-common) | ✅ | ⚠️ | ✅ | ✅ | ⚠️ | ⚠️ | +| [node](https://github.com/percebus/github-actions-node) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [npm](https://github.com/percebus/github-actions-npm) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [python](https://github.com/percebus/github-actions-python) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [pip](https://github.com/percebus/github-actions-pip) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| [docker](https://github.com/percebus/github-actions-docker) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..fdc9998 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,32 @@ +{ + "name": "github-actions", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "github-actions", + "version": "0.1.0", + "license": "SEE LICENSE IN LICENSE.md", + "devDependencies": { + "prettier": "^3.6.2" + } + }, + "node_modules/prettier": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz", + "integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..70becc2 --- /dev/null +++ b/package.json @@ -0,0 +1,34 @@ +{ + "name": "github-actions", + "version": "0.1.0", + "description": "GitHub re-usable Actions & Workflows", + "main": "index.js", + "scripts": { + "_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", + "pretest": "npm run lint", + "test": "exit 0" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/percebus/github-actions.git" + }, + "keywords": [ + "GitHub", + "actions", + "workflows" + ], + "author": "JCystems", + "license": "SEE LICENSE IN LICENSE.md", + "bugs": { + "url": "https://github.com/percebus/github-actions/issues" + }, + "homepage": "https://github.com/percebus/github-actions#readme", + "devDependencies": { + "prettier": "^3.6.2" + } +} From 568c78a1e389837aedf5443688289b0cd8dd8c20 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:28:41 -0500 Subject: [PATCH 02/16] d --- README.md | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index cacd8be..b15364f 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,18 @@ GitHub re-usable Actions & Workflows -| Name | CI | Trigger 1x | dependency-review | Tests | semantic-release | CodeQL | -| ------------------------------------------------------------------------------- | --- | ---------- | ----------------- | ----- | ---------------- | ------ | -| [common](https://github.com/percebus/github-actions-common) | ✅ | ⚠️ | ✅ | ✅ | ⚠️ | ⚠️ | -| [node](https://github.com/percebus/github-actions-node) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [npm](https://github.com/percebus/github-actions-npm) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [python](https://github.com/percebus/github-actions-python) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [pip](https://github.com/percebus/github-actions-pip) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [uv](https://github.com/percebus/github-actions-uv) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | -| [docker](https://github.com/percebus/github-actions-docker) | ✅ | | ✅ | ✅ | ⚠️ | ⚠️ | +| Name | naming | CI | pull_request | Trigger 1x | Tests | semantic-release | CodeQL | +| ------------------------------------------------------------------------------- | ------ | --- | ------------ | ---------- | ----- | ---------------- | ------ | +| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | +| [npm](https://github.com/percebus/github-actions-npm) | ⚠️ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | +| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [pip](https://github.com/percebus/github-actions-pip) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [pipx](https://github.com/percebus/github-actions-pipx) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [poetry](https://github.com/percebus/github-actions-poetry) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [uv](https://github.com/percebus/github-actions-uv) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [containerization](https://github.com/percebus/github-actions-containerization) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [docker](https://github.com/percebus/github-actions-docker) | ⚠️ | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | From 30a7d45485b6024c8b259731a7f0fc4676a7ae9e Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:41:34 -0500 Subject: [PATCH 03/16] d --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index b15364f..61b618a 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,15 @@ GitHub re-usable Actions & Workflows | Name | naming | CI | pull_request | Trigger 1x | Tests | semantic-release | CodeQL | | ------------------------------------------------------------------------------- | ------ | --- | ------------ | ---------- | ----- | ---------------- | ------ | | [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | | [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | | [npm](https://github.com/percebus/github-actions-npm) | ⚠️ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | | [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | | [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [pip](https://github.com/percebus/github-actions-pip) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [pipx](https://github.com/percebus/github-actions-pipx) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [poetry](https://github.com/percebus/github-actions-poetry) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [uv](https://github.com/percebus/github-actions-uv) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [containerization](https://github.com/percebus/github-actions-containerization) | | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | +| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | +| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | | [docker](https://github.com/percebus/github-actions-docker) | ⚠️ | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | +| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | From f90a1e20f690e063454f5733f68f0bd56d16a76e Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:55:14 -0500 Subject: [PATCH 04/16] Update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 61b618a..c7a898d 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,18 @@ GitHub re-usable Actions & Workflows -| Name | naming | CI | pull_request | Trigger 1x | Tests | semantic-release | CodeQL | -| ------------------------------------------------------------------------------- | ------ | --- | ------------ | ---------- | ----- | ---------------- | ------ | -| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | -| [npm](https://github.com/percebus/github-actions-npm) | ⚠️ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | -| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | -| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | -| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ✅ | ✅ | ✅ | ⚠️ | ⚠️ | -| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | -| [docker](https://github.com/percebus/github-actions-docker) | ⚠️ | ✅ | ✅ | | ✅ | ⚠️ | ⚠️ | -| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ✅ | ⚠️ | ✅ | ⚠️ | ⚠️ | +| Name | naming | CI | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | CodeQL | +| ------------------------------------------------------------------------------- | ------ | --- | ----------------- | ------------ | ---------- | ----- | ---------------- | ------ | +| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ✅ | same | ❌ | ✅ | ❌ | ❌ | +| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | N/A | ⚠️ | ✅ | ✅ | ❌ | ❌ | +| [npm](https://github.com/percebus/github-actions-npm) | ❌ | ✅ | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | +| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | N/A | ⚠️ | ✅ | ✅ | ❌ | ❌ | +| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | +| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | N/A | ❌ | ❌ | ✅ | ❌ | ❌ | +| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | | ❌ | ✅ | ✅ | ❌ | ❌ | +| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | +| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | N/A | ❌ | ❌ | ✅ | ❌ | ❌ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | N/A | ✅ | ✅ | ✅ | ❌ | ❌ | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | N/A | ✅ | ❌ | ✅ | ❌ | ❌ | +| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | | ✅ | | ✅ | ❌ | ❌ | +| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | | ✅ | ❌ | ✅ | ❌ | ❌ | From 2a8a79a048a2f9807b769f4a81664e60d4899ab4 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:56:20 -0500 Subject: [PATCH 05/16] Update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index c7a898d..bf5084e 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,18 @@ GitHub re-usable Actions & Workflows -| Name | naming | CI | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | CodeQL | -| ------------------------------------------------------------------------------- | ------ | --- | ----------------- | ------------ | ---------- | ----- | ---------------- | ------ | -| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ✅ | same | ❌ | ✅ | ❌ | ❌ | -| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | N/A | ⚠️ | ✅ | ✅ | ❌ | ❌ | -| [npm](https://github.com/percebus/github-actions-npm) | ❌ | ✅ | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | -| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | N/A | ⚠️ | ✅ | ✅ | ❌ | ❌ | -| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ | ❌ | ❌ | -| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | N/A | ❌ | ❌ | ✅ | ❌ | ❌ | -| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | | ❌ | ✅ | ✅ | ❌ | ❌ | -| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ❌ | -| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | N/A | ❌ | ❌ | ✅ | ❌ | ❌ | -| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | N/A | ✅ | ✅ | ✅ | ❌ | ❌ | -| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | N/A | ✅ | ❌ | ✅ | ❌ | ❌ | -| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | | ✅ | | ✅ | ❌ | ❌ | -| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | | ✅ | ❌ | ✅ | ❌ | ❌ | +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ------------------------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ❌ | ✅ | same | ❌ | ✅ | ❌ | +| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | +| [npm](https://github.com/percebus/github-actions-npm) | ❌ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | +| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | +| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | +| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | +| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ❌ | | ❌ | ✅ | ✅ | ❌ | +| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ✅ | ❌ | +| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ❌ | N/A | ✅ | ✅ | ✅ | ❌ | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ❌ | N/A | ✅ | ❌ | ✅ | ❌ | +| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | ❌ | | ✅ | | ✅ | ❌ | +| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ❌ | | ✅ | ❌ | ✅ | ❌ | From 3b24ce43754eb1750054cc0b15977afaf6e26d8d Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 11:58:25 -0500 Subject: [PATCH 06/16] Update README.md --- README.md | 54 +++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 39 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index bf5084e..e60fd62 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,42 @@ GitHub re-usable Actions & Workflows -| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | -| ------------------------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | -| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ❌ | ✅ | same | ❌ | ✅ | ❌ | -| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | -| [npm](https://github.com/percebus/github-actions-npm) | ❌ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | -| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | -| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | -| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | -| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ❌ | | ❌ | ✅ | ✅ | ❌ | -| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ✅ | ❌ | -| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | -| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ❌ | N/A | ✅ | ✅ | ✅ | ❌ | -| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ❌ | N/A | ✅ | ❌ | ✅ | ❌ | -| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | ❌ | | ✅ | | ✅ | ❌ | -| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ❌ | | ✅ | ❌ | ✅ | ❌ | +## Repositories + +### Common + +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ----------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [common](https://github.com/percebus/github-actions-common) | ✅ | ✅ | ❌ | ✅ | same | ❌ | ✅ | ❌ | + +### Node.js + +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [node](https://github.com/percebus/github-actions-node) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | +| [npm](https://github.com/percebus/github-actions-npm) | ❌ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | +| [nvm](https://github.com/percebus/github-actions-nvm) | ✅ | ✅ | ❌ | N/A | ⚠️ | ✅ | ✅ | ❌ | +| [yarn](https://github.com/percebus/github-actions-yarn) | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | + +### Python + +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ----------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [python](https://github.com/percebus/github-actions-python) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | +| [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ❌ | ❔ | ❌ | ✅ | ✅ | ❌ | +| [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ✅ | ❌ | +| [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ❌ | N/A | ✅ | ✅ | ✅ | ❌ | + +### Containerization + +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ------------------------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ❌ | ❔ | ✅ | ❌ | ✅ | ❌ | +| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | ❌ | | ✅ | | ✅ | ❌ | + +### Testing + +| Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | +| ------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | +| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ❌ | | ✅ | ❌ | ✅ | ❌ | From 7f1c27ac4a879a22e938ee75a17db9fcdc039c90 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:01:18 -0500 Subject: [PATCH 07/16] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e60fd62..6a4e1ce 100644 --- a/README.md +++ b/README.md @@ -27,17 +27,17 @@ GitHub re-usable Actions & Workflows | [pip](https://github.com/percebus/github-actions-pip) | ✅ | ✅ | ❌ | ❔ | ❌ | ✅ | ✅ | ❌ | | [pipx](https://github.com/percebus/github-actions-pipx) | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ✅ | ❌ | | [poetry](https://github.com/percebus/github-actions-poetry) | ✅ | ✅ | ❌ | N/A | ❌ | ❌ | ✅ | ❌ | -| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ❌ | N/A | ✅ | ✅ | ✅ | ❌ | +| [uv](https://github.com/percebus/github-actions-uv) | ✅ | ✅ | ❌ | N/A | ❌ | ✅ | ✅ | ❌ | ### Containerization | Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | | ------------------------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | -| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ❌ | ❔ | ✅ | ❌ | ✅ | ❌ | -| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | ❌ | | ✅ | | ✅ | ❌ | +| [containerization](https://github.com/percebus/github-actions-containerization) | ✅ | ✅ | ❌ | ❔ | ❌ | ❌ | ✅ | ❌ | +| [docker](https://github.com/percebus/github-actions-docker) | ❌ | ✅ | ❌ | ❔ | ❌ | | ✅ | ❌ | ### Testing | Name | naming | CI | CodeQL | dependency-review | pull_request | Trigger 1x | Tests | semantic-release | | ------------------------------------------------------------- | ------ | --- | ------ | ----------------- | ------------ | ---------- | ----- | ---------------- | -| [testing](https://github.com/percebus/github-actions-testing) | | ✅ | ❌ | | ✅ | ❌ | ✅ | ❌ | +| [testing](https://github.com/percebus/github-actions-testing) | ✅ | ✅ | ❌ | N/A | ✅ | ❌ | ✅ | ❌ | From fd7c724a086c86b89225a975d5316ea2874b13d3 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:19:30 -0500 Subject: [PATCH 08/16] f --- .github/workflows/always.yml | 14 + .github/workflows/pull_request.yml | 10 + .gitignore | 448 +++++++++++++++++++++++++++-- 3 files changed, 447 insertions(+), 25 deletions(-) create mode 100644 .github/workflows/always.yml create mode 100644 .github/workflows/pull_request.yml diff --git a/.github/workflows/always.yml b/.github/workflows/always.yml new file mode 100644 index 0000000..0c8ab13 --- /dev/null +++ b/.github/workflows/always.yml @@ -0,0 +1,14 @@ +name: "[C]ontinuous [I]ntegration" +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 + +jobs: + lint: + uses: percebus/github-actions-npm/.github/workflows/npm_run_script.yml@main + with: + script: lint diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 0000000..c5944f5 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,10 @@ +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: + +jobs: + audit: + uses: percebus/github-actions-npm/.github/workflows/dependency-review.yml@main diff --git a/.gitignore b/.gitignore index 9a5aced..426bf98 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,9 @@ + + +###################### +### Node.gitignore ### SRC: https://github.com/github/gitignore/blob/main/Node.gitignore +###################### + # Logs logs *.log @@ -5,6 +11,7 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json @@ -56,6 +63,12 @@ web_modules/ # Optional stylelint cache .stylelintcache +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + # Optional REPL history .node_repl_history @@ -67,8 +80,10 @@ web_modules/ # dotenv environment variable files .env -.env.* -!.env.example +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache @@ -95,15 +110,6 @@ dist .temp .cache -# Sveltekit cache directory -.svelte-kit/ - -# vitepress build output -**/.vitepress/dist - -# vitepress cache directory -**/.vitepress/cache - # Docusaurus cache and generated files .docusaurus @@ -116,24 +122,416 @@ dist # DynamoDB Local files .dynamodb/ -# Firebase cache directory -.firebase/ - # TernJS port file .tern-port # Stores VSCode versions used for testing VSCode extensions .vscode-test -# yarn v3 +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz .pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions - -# Vite logs files -vite.config.js.timestamp-* -vite.config.ts.timestamp-* + + +################################## +### VisualStudioCode.gitignore ### SRC: https://github.com/github/gitignore/blob/main/VisualStudio.gitignore +################################## + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +# but not Directory.Build.rsp, as it configures directory-level build defaults +!Directory.Build.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.tlog +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio 6 auto-generated project file (contains which files were open etc.) +*.vbp + +# Visual Studio 6 workspace and project file (working project files containing files to include in project) +*.dsw +*.dsp + +# Visual Studio 6 technical files +*.ncb +*.aps + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# Visual Studio History (VSHistory) files +.vshistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd + +# VS Code files for those working on multiple tools +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# Windows Installer files from build outputs +*.cab +*.msi +*.msix +*.msm +*.msp + +# JetBrains Rider +*.sln.iml From 1fea6e399627ebe984a8b3da1252b3e2a2e9041d Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:19:50 -0500 Subject: [PATCH 09/16] Update .gitignore --- .gitignore | 41 +++++++++++++++++++++++++---------------- 1 file changed, 25 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index 426bf98..302d32d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,6 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* -.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json @@ -63,12 +62,6 @@ web_modules/ # Optional stylelint cache .stylelintcache -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - # Optional REPL history .node_repl_history @@ -80,10 +73,8 @@ web_modules/ # dotenv environment variable files .env -.env.development.local -.env.test.local -.env.production.local -.env.local +.env.* +!.env.example # parcel-bundler cache (https://parceljs.org/) .cache @@ -110,6 +101,15 @@ dist .temp .cache +# Sveltekit cache directory +.svelte-kit/ + +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory +**/.vitepress/cache + # Docusaurus cache and generated files .docusaurus @@ -122,18 +122,27 @@ dist # DynamoDB Local files .dynamodb/ +# Firebase cache directory +.firebase/ + # TernJS port file .tern-port # Stores VSCode versions used for testing VSCode extensions .vscode-test -# yarn v2 -.yarn/cache -.yarn/unplugged -.yarn/build-state.yml -.yarn/install-state.gz +# yarn v3 .pnp.* +.yarn/* +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions + +# Vite logs files +vite.config.js.timestamp-* +vite.config.ts.timestamp-* ################################## From e41cc12867a58c38f1024d6054a2ae5aad28d489 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:20:39 -0500 Subject: [PATCH 10/16] Update .gitignore --- .gitignore | 416 ++--------------------------------------------------- 1 file changed, 15 insertions(+), 401 deletions(-) diff --git a/.gitignore b/.gitignore index 302d32d..4c57fdf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,19 @@ +################################## +### VisualStudioCode.gitignore ### SRC: https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore +################################## + +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets +!*.code-workspace + +# Built Visual Studio Code Extensions +*.vsix + ###################### ### Node.gitignore ### SRC: https://github.com/github/gitignore/blob/main/Node.gitignore @@ -143,404 +158,3 @@ dist # Vite logs files vite.config.js.timestamp-* vite.config.ts.timestamp-* - - -################################## -### VisualStudioCode.gitignore ### SRC: https://github.com/github/gitignore/blob/main/VisualStudio.gitignore -################################## - -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -mono_crash.* - -# Build results -[Dd]ebug/ -[Dd]ebugPublic/ -[Rr]elease/ -[Rr]eleases/ -x64/ -x86/ -[Ww][Ii][Nn]32/ -[Aa][Rr][Mm]/ -[Aa][Rr][Mm]64/ -bld/ -[Bb]in/ -[Oo]bj/ -[Ll]og/ -[Ll]ogs/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# ASP.NET Scaffolding -ScaffoldingReadMe.txt - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -# but not Directory.Build.rsp, as it configures directory-level build defaults -!Directory.Build.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj -*.log -*.tlog -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc - -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Coverlet is a free, cross platform Code Coverage Tool -coverage*.json -coverage*.xml -coverage*.info - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) -*.vbw - -# Visual Studio 6 auto-generated project file (contains which files were open etc.) -*.vbp - -# Visual Studio 6 workspace and project file (working project files containing files to include in project) -*.dsw -*.dsp - -# Visual Studio 6 technical files -*.ncb -*.aps - -# Visual Studio LightSwitch build output -**/*.HTMLClient/GeneratedArtifacts -**/*.DesktopClient/GeneratedArtifacts -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config - -# Tabs Studio -*.tss - -# Telerik's JustMock configuration file -*.jmconfig - -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs - -# OpenCover UI analysis results -OpenCover/ - -# Azure Stream Analytics local run output -ASALocalRun/ - -# MSBuild Binary and Structured Log -*.binlog - -# NVidia Nsight GPU debugger configuration file -*.nvuser - -# MFractors (Xamarin productivity tool) working folder -.mfractor/ - -# Local History for Visual Studio -.localhistory/ - -# Visual Studio History (VSHistory) files -.vshistory/ - -# BeatPulse healthcheck temp database -healthchecksdb - -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ - -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ - -# Fody - auto-generated XML schema -FodyWeavers.xsd - -# VS Code files for those working on multiple tools -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json -*.code-workspace - -# Local History for Visual Studio Code -.history/ - -# Windows Installer files from build outputs -*.cab -*.msi -*.msix -*.msm -*.msp - -# JetBrains Rider -*.sln.iml From 5ef761ab3ad9552d6263b2e1dad040bdaf1d3ae3 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:22:16 -0500 Subject: [PATCH 11/16] Create PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..c8db545 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,13 @@ +# Change + +## Issues + +- #{FIXME} + +## Summary + +{FIXME} + +## Changes in action + +{FIXME} From 470341e030018f9c7576153a0599f69d9a43f551 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:23:15 -0500 Subject: [PATCH 12/16] Create TODO.md --- TODO.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 TODO.md diff --git a/TODO.md b/TODO.md new file mode 100644 index 0000000..0de623c --- /dev/null +++ b/TODO.md @@ -0,0 +1,5 @@ +# github-actions + +## TODOs + +- [ ] Rename repo to "devops" and also document repo "commons"? From 0e8edfcd0199a0d7844141defd53f42eda400dbf Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:26:44 -0500 Subject: [PATCH 13/16] d --- .github/workflows/pull_request.yml | 5 +++++ README.md | 2 ++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index c5944f5..aec150f 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4,6 +4,11 @@ name: Pull Request # Please ensure you are using the "pull_request" event for this workflow." on: pull_request: + workflow_call: # SRC: https://docs.github.com/en/actions/using-workflows/reusing-workflows + +concurrency: + group: ${{ github.ref }}-${{ github.workflow }} + cancel-in-progress: true jobs: audit: diff --git a/README.md b/README.md index 6a4e1ce..3ab8864 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # github-actions +[![[C]ontinuous [I]ntegration](https://github.com/percebus/github-actions/actions/workflows/always.yml/badge.svg)](https://github.com/percebus/github-actions/actions/workflows/always.yml) [![Pull Request](https://github.com/percebus/github-actions/actions/workflows/pull_request.yml/badge.svg?event=pull_request)](https://github.com/percebus/github-actions/actions/workflows/pull_request.yml) + GitHub re-usable Actions & Workflows ## Repositories From 05c9e8984c7c07d6c9fba831918879f60c855f5a Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:27:05 -0500 Subject: [PATCH 14/16] Update pull_request.yml --- .github/workflows/pull_request.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index aec150f..64e7cf2 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -10,6 +10,9 @@ concurrency: group: ${{ github.ref }}-${{ github.workflow }} cancel-in-progress: true +permissions: + contents: read + jobs: audit: uses: percebus/github-actions-npm/.github/workflows/dependency-review.yml@main From e83fcf01a8eb36a8d9b7abfe7d54201c34f818e5 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:34:15 -0500 Subject: [PATCH 15/16] Update pull_request.yml --- .github/workflows/pull_request.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 64e7cf2..3dbac93 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -4,7 +4,6 @@ name: Pull Request # Please ensure you are using the "pull_request" event for this workflow." on: pull_request: - workflow_call: # SRC: https://docs.github.com/en/actions/using-workflows/reusing-workflows concurrency: group: ${{ github.ref }}-${{ github.workflow }} From 7a6fc5e4e4c833996123af29ddf921d0d55d7636 Mon Sep 17 00:00:00 2001 From: JCGuerrero Date: Sat, 5 Jul 2025 12:41:32 -0500 Subject: [PATCH 16/16] Update pull_request.yml --- .github/workflows/pull_request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 3dbac93..c4cb9a9 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -11,6 +11,7 @@ concurrency: permissions: contents: read + pull-requests: read jobs: audit: