Bump the all group with 5 updates #431
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
| # yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json | |
| --- | |
| name: radius-bot | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| radius-bot: | |
| name: Run Radius Bot script | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| sparse-checkout: | | |
| .github/scripts/radius-bot.js | |
| sparse-checkout-cone-mode: false | |
| - name: Comment analyzer | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8 | |
| with: | |
| github-token: ${{ secrets.GH_RAD_CI_BOT_PAT }} | |
| script: | | |
| const script = require('./.github/scripts/radius-bot.js') | |
| await script({github, context}) |