chore(deps): update dependency @types/node to v22.18.13 #5375
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: Update Milestone | |
| on: | |
| pull_request_target: | |
| types: | |
| - closed | |
| - opened | |
| - reopened | |
| - synchronize | |
| jobs: | |
| update_milestone: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/[email protected] | |
| with: | |
| ref: ${{ github.sha }} | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@v5 | |
| - name: Fetch all history for all tags and branches | |
| run: git fetch --prune | |
| - name: Install GitVersion | |
| if: ${{ github.event.action == 'opened' }} | |
| uses: gittools/actions/gitversion/[email protected] | |
| with: | |
| versionSpec: '6.0.x' | |
| preferLatestVersion: true | |
| - name: Install GitReleaseManager | |
| if: ${{ github.event.action == 'opened' }} | |
| uses: gittools/actions/gitreleasemanager/[email protected] | |
| with: | |
| versionSpec: '0.18.x' | |
| - name: Use GitVersion | |
| if: ${{ github.event.action == 'opened' }} | |
| id: gitversion | |
| uses: gittools/actions/gitversion/[email protected] | |
| - name: Create Milestone | |
| if: ${{ github.event.action == 'opened' }} | |
| uses: WyriHaximus/github-action-create-milestone@v1 | |
| with: | |
| title: v${{ steps.gitversion.outputs.majorMinorPatch }} | |
| env: | |
| GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
| continue-on-error: true | |
| - name: sync milestones | |
| uses: RocketSurgeonsGuild/actions/[email protected] | |
| with: | |
| default-label: 'mysterious' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |