Skip to content

chore(deps): update vitest monorepo to v2.1.7 #423

chore(deps): update vitest monorepo to v2.1.7

chore(deps): update vitest monorepo to v2.1.7 #423

---
name: Gather Pull Request Metadata
on:
pull_request:
types: [ opened, reopened, synchronize ]
permissions:
contents: read
jobs:
gather-metadata:
runs-on: ubuntu-latest
steps:
- name: Repository checkout
uses: actions/checkout@v4
- id: Metadata
name: Gather Pull Request Metadata
uses: ./
- name: Log Pull Request Metadata
env:
PR_METADATA: ${{ toJson(steps.Metadata.outputs.metadata) }}
run: |
echo -e "::warning::$PR_METADATA"
- name: Upload artifact with gathered metadata
uses: actions/upload-artifact@v4
with:
name: Pull Request Metadata
path: ${{ steps.Metadata.outputs.metadata-file }}
...