The bow and arrow sample's immersive mode not working on visionOS 26 beta 2 #147
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: discord message | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| newissue: | |
| if: contains(github.event.comment.html_url, 'comment') == false | |
| name: Discord New Issue | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: send custom message with args | |
| uses: appleboy/discord-action@master | |
| with: | |
| webhook_id: ${{ secrets.WEBHOOK_ID }} | |
| webhook_token: ${{ secrets.WEBHOOK_TOKEN }} | |
| username: "${{github.event.issue.user.login}}" | |
| avatar_url : "${{github.event.issue.user.avatar_url}}" | |
| message: "**New issue** → ${{github.event.issue.title}}\n<${{github.event.issue.html_url}}>" |