ci: bump actions/setup-go from 6.1.0 to 6.4.0 #5
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: AI Fix with Copilot | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| issue_number: | |
| description: Issue number to assign to Copilot | |
| required: true | |
| type: string | |
| issues: | |
| types: [labeled] | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| ai-fix: | |
| uses: kubestellar/infra/.github/workflows/reusable-ai-fix.yml@main | |
| with: | |
| issue_number: ${{ github.event.inputs.issue_number || '' }} | |
| secrets: | |
| token: ${{ secrets.GITHUB_TOKEN }} |