chore(pie-monorepo): WCP-000 update labeler workflow #1
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 PR Info | |
on: pull_request | |
jobs: | |
gather-info: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Gather necessary information and save it as an artifact | |
- name: Gather Information | |
run: | | |
# Example: Gather branch name or other necessary info | |
echo "PR_BRANCH_NAME=${{ github.event.pull_request.head.ref }}" > pr-info.txt | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: pr-info | |
path: pr-info.txt |