feat: nested multi-level trace objects and export support in threads #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-approve PRs (Non-blocking) | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Auto-approve PR | |
continue-on-error: true | |
uses: hmarr/auto-approve-action@v3 | |
with: | |
github-token: ${{ secrets.LUNARY_BOT_GH_TOKEN }} | |
- name: Always succeed | |
run: exit 0 |