Skip to content

chore(deps): update dependency eslint-plugin-prettier to v5 #194

chore(deps): update dependency eslint-plugin-prettier to v5

chore(deps): update dependency eslint-plugin-prettier to v5 #194

---
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@v3
- 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@v3
with:
name: Pull Request Metadata
path: ${{ steps.Metadata.outputs.metadata-file }}
...