Skip to content

Commit

Permalink
release: [email protected] [skip ci]
Browse files Browse the repository at this point in the history
## ✨ Features

- **packages/github:** implement rejoinder-github-actions ([2551251][1])

## ⚙️ Build System

- Add `--no-parallel` to release script ([36d9b15][2])
- **babel:** break other dependency cycle between symbiote and rejoinder during build step ([3a2647a][3])
- **cycle-breaker:** ensure rejoinder\~dev receives its own copy of @-xun/debug\~dev ([b10e6fc][4])
- **packages/github:** properly export entry points ([28f207c][5])
- Regenerate assets ([78424fa][6])
- **release:** re-apply cycle-breaker patches after xrelease un-applies them ([571041b][7])
- Use proper codecov package flag for badge link ([5526095][8])

[1]: 2551251
[2]: 36d9b15
[3]: 3a2647a
[4]: b10e6fc
[5]: 28f207c
[6]: 78424fa
[7]: 571041b
[8]: 5526095
  • Loading branch information
Xunnamius committed Jan 16, 2025
1 parent e9c6f70 commit 6d00e3a
Show file tree
Hide file tree
Showing 5 changed files with 99 additions and 2 deletions.
34 changes: 34 additions & 0 deletions packages/github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog

All notable changes to this project will be documented in this auto-generated
file. The format is based on [Conventional Commits][1];
this project adheres to [Semantic Versioning][2].

<br />

## rejoinder-github-actions\@1.0.0 (2025-01-16)

### ✨ Features

- **packages/github:** implement rejoinder-github-actions ([2551251][3])

### ⚙️ Build System

- Add `--no-parallel` to release script ([36d9b15][4])
- **babel:** break other dependency cycle between symbiote and rejoinder during build step ([3a2647a][5])
- **cycle-breaker:** ensure rejoinder\~dev receives its own copy of @-xun/debug\~dev ([b10e6fc][6])
- **packages/github:** properly export entry points ([28f207c][7])
- Regenerate assets ([78424fa][8])
- **release:** re-apply cycle-breaker patches after xrelease un-applies them ([571041b][9])
- Use proper codecov package flag for badge link ([5526095][10])

[1]: https://conventionalcommits.org
[2]: https://semver.org
[3]: https://github.com/Xunnamius/rejoinder/commit/25512516e21add20497e52d758b03f89019dba1c
[4]: https://github.com/Xunnamius/rejoinder/commit/36d9b15a656e1eed5a50cdfe7fe502a22f0aa57f
[5]: https://github.com/Xunnamius/rejoinder/commit/3a2647a4383d23c44984f5fba72936f803375d01
[6]: https://github.com/Xunnamius/rejoinder/commit/b10e6fc514367aef02468efe7382c2a09b7d45d5
[7]: https://github.com/Xunnamius/rejoinder/commit/28f207c6ba64b9a63e6d2be34865f901fe3109ac
[8]: https://github.com/Xunnamius/rejoinder/commit/78424fa8f7badb679969f17dc434d2444f557d0d
[9]: https://github.com/Xunnamius/rejoinder/commit/571041bf4746363a1355f6eb2e03d6c31e5b0a18
[10]: https://github.com/Xunnamius/rejoinder/commit/5526095585c560786bb4716fe2181814ff33c2ac
9 changes: 7 additions & 2 deletions packages/github/docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
**rejoinder-cli**
**rejoinder-github-actions**

***

# rejoinder-cli
# rejoinder-github-actions

## Modules

- [activator](activator/README.md)
- [index](index/README.md)
7 changes: 7 additions & 0 deletions packages/github/docs/activator/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[**rejoinder-github-actions**](../README.md)

***

[rejoinder-github-actions](../README.md) / activator

# activator
11 changes: 11 additions & 0 deletions packages/github/docs/index/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[**rejoinder-github-actions**](../README.md)

***

[rejoinder-github-actions](../README.md) / index

# index

## Functions

- [createGithubLogger](functions/createGithubLogger.md)
40 changes: 40 additions & 0 deletions packages/github/docs/index/functions/createGithubLogger.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[**rejoinder-github-actions**](../../README.md)

***

[rejoinder-github-actions](../../README.md) / [index](../README.md) / createGithubLogger

# Function: createGithubLogger()

> **createGithubLogger**(`__namedParameters`): `ExtendedLogger`
Defined in: [index.ts:21](https://github.com/Xunnamius/rejoinder/blob/e9c6f707bf2893cb3722505f62f0a3d19b904592/packages/github/src/index.ts#L21)

Create and return new set of logger instances.

The pre-extended sub-instances of the returned logger support "titles," which
correspond to GitHub Actions output titles. Set them by providing input of
the form `"title=...::"`, e.g.:

```
logger.warn("title=Output For Project X::Real output here!");
```

## Parameters

### \_\_namedParameters

#### namespace

`string`

The namespace of the logger. The namespace must be a valid [`debug`
namespace](https://npm.im/debug#namespace-colors).

**See**

https://npm.im/debug#namespace-colors

## Returns

`ExtendedLogger`

0 comments on commit 6d00e3a

Please sign in to comment.