When will the official version be available? #8
Workflow file for this run
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: Respond to Triaged Issue Comment (Local) | ||
| on: | ||
| issue_comment: | ||
| types: [created] | ||
| concurrency: | ||
| group: respond-to-triaged-issue-comment-${{ github.event.comment.id || github.run_id }} | ||
| cancel-in-progress: false | ||
| jobs: | ||
| # Mention, bot, event-type, and trust gates all live in the reusable | ||
| # workflow (``respond-to-triaged-issue-comment.yml``). This adapter | ||
| # exists only to subscribe to the GitHub event that can carry an | ||
| # ``@oz-agent`` mention on a triaged issue and delegate it through | ||
| # ``workflow_call``. | ||
| respond_inline: | ||
| permissions: | ||
| contents: read | ||
| issues: write | ||
| uses: warpdotdev/oz-for-oss/.github/workflows/respond-to-triaged-issue-comment.yml@main | ||
|
Check failure on line 18 in .github/workflows/respond-to-triaged-issue-comment-local.yml
|
||
| secrets: | ||
| OZ_MGMT_GHA_APP_ID: ${{ secrets.OZ_MGMT_GHA_APP_ID }} | ||
| OZ_MGMT_GHA_PRIVATE_KEY: ${{ secrets.OZ_MGMT_GHA_PRIVATE_KEY }} | ||
| OSS_WARP_API_KEY: ${{ secrets.OSS_WARP_API_KEY }} | ||