#github-actions #github #action #build #helper #context #translation

actions-github

A rust translation of the helper library @actions/github to build GitHub actions using rust

5 releases

0.2.0 May 27, 2024
0.1.0 May 24, 2024
0.0.5 May 27, 2024

#24 in #github-actions

MIT license

22KB
302 lines

Rusty-Actions

A rust translation of @actions/github.

GitHub Actions

Find the documentation here.

Crates.io Total Downloads

Installation

cargo add actions-github

Latest version available is latest version

Usage

// Obtain the context from the action worker
use actions_github::context::get_context;
use actions_github::logger;

logger::info("Obtaining context");
let data = get_context().unwrap();

logger::debug(format!("Event is {}", data.event_name).as_str());

// Produce an output
set_output("is_pr", (ctx.event_name == "pull_request").to_string());

Works well with octocrab:

use actions_github::core::{get_input, set_output};
use actions_github::context::get_context;
use octocrab::Octocrab;

let token = get_input("GITHUB_TOKEN").unwrap();

let crab = Octocrab::builder().personal_token(token).build();
octocrab::initialise(crab.unwrap());

let context = get_context();
let org = context.repo.owner;
let repo = context.repo.repo;

let pulls = octocrab::instance().pulls(owner, repo).list()

// Output how many PRs are in the repository
set_output("PRs", pulls.len().to_string());

Dependencies

~370KB