Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.17.0 #49

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.17.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.17.0 #49

Workflow file for this run

name: Ship js trigger
on:
pull_request:
types:
- closed
jobs:
build:
name: Release
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v')
steps:
- name: Checkout code 🛎
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
- name: Setup GitHub Actor
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Action"
- name: Setup node environment 📦
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
check-latest: true
- name: Trigger a release 🥳
run: npx shipjs trigger
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_INCOMING_HOOK: ${{ secrets.SLACK_INCOMING_HOOK }}