Skip to content

Commit

Permalink
fix: moker updates (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
hongaar authored Jun 7, 2023
1 parent f256ff1 commit 1990fed
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ updates:
directory: /
schedule:
interval: weekly
commit-message:
prefix: fix
prefix-development: chore
include: scope
- package-ecosystem: github-actions
directory: /
schedule:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
pull_request:

jobs:
format-check:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
name: release

on:
workflow_dispatch:
push:
branches:
- main

jobs:
release:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/reload-moker-plugins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: reload-moker-plugins

on:
workflow_dispatch:
pull_request:

jobs:
reload-moker-plugins:
runs-on: ubuntu-latest
if: |
github.actor == 'dependabot[bot]' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v3
- uses: hongaar/moker@v1
- uses: peter-evans/create-pull-request@v5
with:
title: "chore: reload moker plugins"
body: |
*🤖 Automated changes by [moker](https://github.com/hongaar/moker)*
Please carefully review the changes, some plugins may override your changes.
token: ${{ secrets.GH_PAT }}
21 changes: 21 additions & 0 deletions .github/workflows/update-node-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: update-node-versions

on:
workflow_dispatch:
schedule:
- cron: "30 7 * * 0"

jobs:
update-node-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hongaar/update-node-versions@v2
- uses: peter-evans/create-pull-request@v5
with:
title: "feat: update node.js versions"
body: |
Automated changes by [update-node-versions](https://github.com/hongaar/update-node-versions) GitHub action
BREAKING CHANGE: This updates the supported node.js versions
token: ${{ secrets.GH_PAT }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ node_modules
!.yarn/releases
!.yarn/sdks
!.yarn/versions

# artifacts
/dist
/types
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
# [1.0.0](https://github.com/hongaar/semantic-release-yarn/compare/v0.3.2...v1.0.0) (2023-04-04)


### Features

* convert to esm ([#81](https://github.com/hongaar/semantic-release-yarn/issues/81)) ([4e2199b](https://github.com/hongaar/semantic-release-yarn/commit/4e2199b8ece3046b4aae284d25f239997418d6c2))

- convert to esm
([#81](https://github.com/hongaar/semantic-release-yarn/issues/81))
([4e2199b](https://github.com/hongaar/semantic-release-yarn/commit/4e2199b8ece3046b4aae284d25f239997418d6c2))

### BREAKING CHANGES

* drop support for Node < 18
- drop support for Node < 18

## [0.3.2](https://github.com/hongaar/semantic-release-yarn/compare/v0.3.1...v0.3.2) (2023-02-28)


### Bug Fixes

* upgrade deps ([#55](https://github.com/hongaar/semantic-release-yarn/issues/55)) ([dd79cf1](https://github.com/hongaar/semantic-release-yarn/commit/dd79cf1daef3c5872c0625337369d0c83c532216))
- upgrade deps
([#55](https://github.com/hongaar/semantic-release-yarn/issues/55))
([dd79cf1](https://github.com/hongaar/semantic-release-yarn/commit/dd79cf1daef3c5872c0625337369d0c83c532216))

## [0.3.1](https://github.com/hongaar/semantic-release-yarn/compare/v0.3.0...v0.3.1) (2023-01-18)

Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Node 18 + ESM + Strictest",
"display": "Node 20 + ESM + Strictest",
"compilerOptions": {
"lib": ["es2022"],
"lib": ["es2022", "es2023"],
"module": "es2022",
"target": "es2022",
"moduleResolution": "node",
Expand Down

0 comments on commit 1990fed

Please sign in to comment.