Update README.md #32
Workflow file for this run
This file contains 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: Gather Pull Request Metadata | |
on: | |
pull_request: | |
branches: [ main ] | |
types: [ opened, reopened, synchronize ] | |
permissions: | |
contents: read | |
jobs: | |
gather-metadata: | |
runs-on: ubuntu-latest | |
permissions: | |
# only required for workflows in private repositories | |
actions: read | |
contents: read | |
steps: | |
- name: Repository checkout | |
uses: actions/checkout@v4 | |
- id: Metadata | |
name: Gather Pull Request Metadata | |
uses: redhat-plumbers-in-action/gather-pull-request-metadata@v1 | |
- name: Upload Pull Request Metadata artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Pull Request Metadata | |
path: ${{ steps.Metadata.outputs.metadata-file }} | |
retention-days: 1 |