Skip to content

chore(deps): bump @opentelemetry/winston-transport from 0.4.0 to 0.5.0 #91

chore(deps): bump @opentelemetry/winston-transport from 0.4.0 to 0.5.0

chore(deps): bump @opentelemetry/winston-transport from 0.4.0 to 0.5.0 #91

Workflow file for this run

name: PR Conventional Commit Validation
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
validate-pr-title:
runs-on: ubuntu-latest
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@1.1.0
with:
task_types: '["feat","fix","docs","test","ci","refactor","perf","chore","revert"]'
add_label: "false"
generate-pr-description:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: octue/generate-pull-request-description@1.0.0.beta-2
id: pr-description
with:
pull_request_url: ${{ github.event.pull_request.url }}
api_token: ${{ secrets.GH_TOKEN }}
- name: Update pull request body
uses: riskledger/update-pr-description@v2
with:
body: ${{ steps.pr-description.outputs.pull_request_description }}
token: ${{ secrets.GH_TOKEN }}
run-tests:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: install dependencies
run: bun install
- name: run tests
run: bun test