Skip to content

Commit

Permalink
chore(core): add gh actions (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
c43721 authored Nov 2, 2024
2 parents 3803645 + 2ca1079 commit be028c6
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
sdk:
- changed-files:
- any-glob-to-any-file: javscript_sdk/**
logstf:
- changed-files:
- any-glob-to-any-file: logstf/**
etf2l:
- changed-files:
- any-glob-to-any-file: etf2l/**
rgl:
- changed-files:
- any-glob-to-any-file: rgl/**
demostf:
- changed-files:
- any-glob-to-any-file: demostf/**
14 changes: 14 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Pull Request Labeler"
on:
- pull_request_target

jobs:
triage:
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
with:
sync-labels: true
21 changes: 21 additions & 0 deletions .github/workflows/publish-javscript-sdk.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Javascript SDK
on:
push:
branches:
- main
paths:
- 'javascript-sdk/**'

jobs:
publish:
runs-on: ubuntu-latest

permissions:
contents: read
id-token: write

steps:
- uses: actions/checkout@v4

- name: Publish package
run: npx jsr publish

0 comments on commit be028c6

Please sign in to comment.