yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
39c9e25f6
master
1name : Slash Command Dispatch 2on : 3issue_comment : 4types : [ created ] 5jobs : 6slashCommandDispatch : 7runs-on : ubuntu-latest 8steps : 9- name : Slash Command Dispatch 10id : scd 11uses : peter-evans/slash-command-dispatch@v4 12with : 13token : ${{ secrets.GITHUB_TOKEN }} 14reaction-token : ${{ secrets.SLANGBOT_PAT }} 15issue-type : pull-request 16config : > 17[ 18{ 19"command": "format", 20"permission": "none", 21"issue_type": "pull-request" 22}, 23{ 24"command": "regenerate-toc", 25"permission": "none", 26"issue_type": "pull-request" 27}, 28{ 29"command": "regenerate-cmdline-ref", 30"permission": "none", 31"issue_type": "pull-request" 32} 33] 34 35- name : Edit comment with error message 36if : steps.scd.outputs.error-message 37uses : peter-evans/create-or-update-comment@v4 38with : 39token : ${{ secrets.SLANGBOT_PAT }} 40comment-id : ${{ github.event.comment.id }} 41body : | 42 > ${{ steps.scd.outputs.error-message }}