The _trace_id_ts table is not being used correctly in the explore view
#570
This file contains hidden or 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: Run commands when issues are labeled | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| main: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Actions | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: 'grafana/grafana-github-actions' | |
| path: ./actions | |
| ref: main | |
| persist-credentials: false | |
| - name: Install Actions | |
| run: npm install --production --prefix ./actions | |
| - name: Run Commands | |
| uses: ./actions/commands | |
| with: | |
| token: ${{secrets.ISSUE_COMMANDS_TOKEN}} | |
| configPath: issue_commands |