mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2026-05-14 15:01:44 +00:00
25 lines
619 B
YAML
25 lines
619 B
YAML
name: "PR Management Auto Assign Collect Data"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, ready_for_review]
|
|
|
|
jobs:
|
|
collect:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
pull-requests: read
|
|
steps:
|
|
- name: Save PR data to artifact
|
|
run: |
|
|
{
|
|
echo "PR_NUMBER=${{ github.event.pull_request.number }}"
|
|
echo "PR_AUTHOR=${{ github.event.pull_request.user.login }}"
|
|
} > pr-auto-assign-data.env
|
|
|
|
- name: Upload PR data artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: pr-auto-assign-data
|
|
path: pr-auto-assign-data.env |