fix: agent not starting on Windows arm64 (missing VC140RUNTIME.dll) #1
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: Move Closed Issue to Milestone | |
| on: | |
| issues: | |
| types: [closed] | |
| workflow_dispatch: | |
| inputs: | |
| issue_number: | |
| description: 'Issue number to process (for manual testing)' | |
| required: true | |
| type: string | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| move-to-milestone: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Move issue to milestone | |
| uses: FiligranHQ/filigran-ci-tools/actions/move-closed-issue-to-milestone@main | |
| with: | |
| source-labels: 'bug, technical improvement' | |
| target-milestone: '0. Candidate' | |
| issue-number: ${{ github.event.inputs.issue_number || '' }} |