@hugoalh/github-actions-core

An ECMAScript (JavaScript & TypeScript) module to provide a better and easier way for GitHub Actions to communicate with the runner, and the toolkit for developing GitHub Actions.

https://github.com/hugoalh/github-actions-core-es

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (8.3%) to scientific vocabulary

Keywords

core ecmascript ecmascript-module es es-module esm esmodule gh-actions ghactions github-actions javascript js toolkit ts typescript

Keywords from Contributors

mesh interpretability sequences generic projection interactive optim hacking network-simulation
Last synced: 4 months ago · JSON representation ·

Repository

An ECMAScript (JavaScript & TypeScript) module to provide a better and easier way for GitHub Actions to communicate with the runner, and the toolkit for developing GitHub Actions.

Basic Info
  • Host: GitHub
  • Owner: hugoalh
  • License: other
  • Language: TypeScript
  • Default Branch: main
  • Homepage:
  • Size: 301 KB
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 1
  • Releases: 12
Topics
core ecmascript ecmascript-module es es-module esm esmodule gh-actions ghactions github-actions javascript js toolkit ts typescript
Created almost 2 years ago · Last pushed 5 months ago
Metadata Files
Readme Contributing License Citation Codeowners Security

README.md

GitHub Actions - Core (ES)

⚖️ MIT

GitHub: hugoalh/github-actions-core-es JSR: @hugoalh/github-actions-core NPM: @hugoalh/github-actions-core

An ECMAScript (JavaScript & TypeScript) module to provide a better and easier way for GitHub Actions to communicate with the runner, and the toolkit for developing GitHub Actions.

⚠️ Important

This is a partial refactor of the official toolkit, not all of the features in the official toolkit are available in here, and not all of the features in here are available in the official toolkit.

🌟 Features

  • Ability to use directly on GitHub Actions with Deno runtime without complex setup.
  • Compatible with bundler.
  • Full ECMAScript module.

🔰 Begin

🎯 Targets

| Targets | Remote | JSR | NPM | |:--|:-:|:-:|:-:| | Bun >= v1.1.0 | ❌ | ✔️ | ✔️ | | Deno >= v2.1.0 | ✔️ | ✔️ | ✔️ | | NodeJS >= v20.9.0 | ❌ | ✔️ | ✔️ |

[!NOTE] - It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.

#️⃣ Resources Identifier

  • Remote - GitHub Raw: https://raw.githubusercontent.com/hugoalh/github-actions-core-es/{Tag}/mod.ts
  • JSR: [jsr:]@hugoalh/github-actions-core[@{Tag}]
  • NPM: [npm:]@hugoalh/github-actions-core[@{Tag}]

[!NOTE] - For usage of remote resources, it is recommended to import the entire module with the main path mod.ts, however it is also able to import part of the module with sub path if available, but do not import if:

  • it's path has an underscore prefix (e.g.: _foo.ts, _util/bar.ts), or
  • it is a benchmark or test file (e.g.: foo.bench.ts, foo.test.ts), or
  • it's symbol has an underscore prefix (e.g.: _bar, _foo).

These elements are not considered part of the public API, thus no stability is guaranteed for them. - For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file jsr.jsonc property exports for available sub entrypoints. - It is recommended to use this module with tag for immutability.

🛡️ Runtime Permissions

  • Environment Variable (Deno: env):
    • ACTIONS_CACHE_SERVICE_V2 (Optional)
    • ACTIONS_CACHE_URL (Optional)
    • ACTIONS_ID_TOKEN_REQUEST_TOKEN (Optional)
    • ACTIONS_ID_TOKEN_REQUEST_URL (Optional)
    • ACTIONS_RESULTS_URL (Optional)
    • ACTIONS_RUNTIME_TOKEN (Optional)
    • ACTIONS_RUNTIME_URL (Optional)
    • CI (Optional)
    • GITHUB_ACTION (Optional)
    • GITHUB_ACTIONS (Optional)
    • GITHUB_ACTOR (Optional)
    • GITHUB_ACTOR_ID (Optional)
    • GITHUB_API_URL (Optional)
    • GITHUB_ENV (Optional)
    • GITHUB_EVENT_NAME (Optional)
    • GITHUB_EVENT_PATH (Optional)
    • GITHUB_GRAPHQL_URL (Optional)
    • GITHUB_JOB (Optional)
    • GITHUB_OUTPUT (Optional)
    • GITHUB_PATH (Optional)
    • GITHUB_REF_NAME (Optional)
    • GITHUB_REF_TYPE (Optional)
    • GITHUB_REPOSITORY (Optional)
    • GITHUB_REPOSITORY_ID (Optional)
    • GITHUB_REPOSITORY_OWNER (Optional)
    • GITHUB_REPOSITORY_OWNER_ID (Optional)
    • GITHUB_RETENTION_DAYS (Optional)
    • GITHUB_RUN_ATTEMPT (Optional)
    • GITHUB_RUN_ID (Optional)
    • GITHUB_RUN_NUMBER (Optional)
    • GITHUB_SERVER_URL (Optional)
    • GITHUB_SHA (Optional)
    • GITHUB_STATE (Optional)
    • GITHUB_STEP_SUMMARY (Optional)
    • GITHUB_WORKFLOW (Optional)
    • GITHUB_WORKFLOW_REF (Optional)
    • GITHUB_WORKFLOW_SHA (Optional)
    • GITHUB_WORKSPACE (Optional)
    • RUNNER_ARCH (Optional)
    • RUNNER_ENVIRONMENT (Optional)
    • RUNNER_NAME (Optional)
    • RUNNER_OS (Optional)
    • RUNNER_TEMP (Optional)
    • RUNNER_TOOL_CACHE (Optional)
    • Resources (Optional)
  • File System - Read (Deno: read; NodeJS: fs-read):
    • Resources (Optional)
  • File System - Write (Deno: write; NodeJS: fs-write):
    • Resources (Optional)

🧩 APIs

  • ts function addPATH(path: string, options?: GitHubActionsSetEnvironmentVariableOptions): void; function addPATH(paths: readonly string[], options?: GitHubActionsSetEnvironmentVariableOptions): void;
  • ts function addSecretMask(...values: readonly string[]): void;
  • ts function enterLogGroup(title?: string): void;
  • ts function exitLogGroup(): void;
  • ts function getInput(key: string, options?: GitHubActionsGetParameterOptions & { require?: false; }): string | undefined; function getInput(key: string, options: GitHubActionsGetParameterOptions & { require: true; }): string;
  • ts function getState(key: string, options?: GitHubActionsGetParameterOptions & { require?: false; }): string | undefined; function getState(key: string, options: GitHubActionsGetParameterOptions & { require: true; }): string;
  • ts function setEnvironmentVariable(key: string, value: StringizableType, options?: GitHubActionsSetEnvironmentVariableOptions): void; function setEnvironmentVariable(pairs: KeyValueLike<StringizableType>, options?: GitHubActionsSetEnvironmentVariableOptions): void;
  • ts function setOutput(key: string, value: StringizableType): void; function setOutput(pairs: KeyValueLike<StringizableType>): void;
  • ts function setState(key: string, value: StringizableType): void; function setState(pairs: KeyValueLike<StringizableType>): void;
  • ts function writeDebug(...data: readonly string[]): void;
  • ts function writeError(data: string, properties?: GitHubActionsAnnotationProperties): void;
  • ts function writeNotice(data: string, properties?: GitHubActionsAnnotationProperties): void;
  • ts function writeWarning(data: string, properties?: GitHubActionsAnnotationProperties): void;

[!NOTE] - For the full or prettier documentation, can visit via: - Deno CLI deno doc - JSR

✍️ Examples

  • ts writeNotice("Hello, world!"); //=> ::notice::Hello, world!

Owner

  • Name: hugoalh
  • Login: hugoalh
  • Kind: user
  • Location: Everywhere
  • Company: @hugoalh-studio

Lead of @hugoalh-studio; Full time software developer; Part time freelancer

Citation (CITATION.cff)

# yaml-language-server: $schema=https://citation-file-format.github.io/1.2.0/schema.json
cff-version: "1.2.0"
title: "GitHub Actions - Core (ES)"
message: "If you use this software, please cite it using the metadata from this file."
type: "software"
authors:
  - name: "hugoalh"
repository-code: "https://github.com/hugoalh/github-actions-core-es"
keywords:
  - "core"
  - "ecmascript"
  - "ecmascript-module"
  - "es"
  - "es-module"
  - "esm"
  - "esmodule"
  - "gh-actions"
  - "ghactions"
  - "github-actions"
  - "javascript"
  - "js"
  - "toolkit"
  - "ts"
  - "typescript"
license: "MIT"

GitHub Events

Total
  • Release event: 7
  • Delete event: 9
  • Issue comment event: 5
  • Push event: 78
  • Pull request review event: 5
  • Pull request event: 18
  • Create event: 18
Last Year
  • Release event: 7
  • Delete event: 9
  • Issue comment event: 5
  • Push event: 78
  • Pull request review event: 5
  • Pull request event: 18
  • Create event: 18

Committers

Last synced: 9 months ago

All Time
  • Total Commits: 110
  • Total Committers: 2
  • Avg Commits per committer: 55.0
  • Development Distribution Score (DDS): 0.045
Past Year
  • Commits: 80
  • Committers: 2
  • Avg Commits per committer: 40.0
  • Development Distribution Score (DDS): 0.063
Top Committers
Name Email Commits
hugoalh h****h@g****m 105
dependabot[bot] 4****] 5

Packages

  • Total packages: 1
  • Total downloads:
    • npm 107 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 9
  • Total maintainers: 1
npmjs.org: @hugoalh/github-actions-core

A module to provide a better and easier way for GitHub Actions to communicate with the runner, and the toolkit for developing GitHub Actions.

  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 107 Last month
Rankings
Dependent repos count: 25.6%
Average: 31.3%
Dependent packages count: 37.1%
Maintainers (1)
Last synced: 4 months ago

Dependencies

.github/workflows/announce-new-release.yml actions
  • hugoalh/send-discord-webhook-ghaction v6.0.2 composite
.github/workflows/invoke-codeql-analysis.yml actions
.github/workflows/publish-deno-package.yml actions
.github/workflows/review-deno-code.yml actions
.github/workflows/scan-virus.yml actions
.github/workflows/sync-labels.yml actions
.github/workflows/invoke-devskim-analysis.yml actions
npm/package.json npm
  • typescript ^5.4.5 development
  • @hugoalh/is-json 1.0.2
  • @hugoalh/is-string-singleline 1.0.2