-
-
Notifications
You must be signed in to change notification settings - Fork 619
39 lines (33 loc) · 1.03 KB
/
setup.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 🎬 Setup
on:
push:
branches: [dev]
pull_request:
branches: [dev]
permissions:
pull-requests: read
jobs:
set-pr-info:
name: set PR info
runs-on: ubuntu-latest
steps:
- name: Save PR info
run: |
echo ${{ github.event.pull_request.number }} > ./pr-id.txt
echo ${{ github.head_ref }} >> ./pr-ref.txt
echo ${{ github.event.pull_request.head.repo.full_name || github.repository }} >> ./pr-repo.txt
- name: Upload PR number
uses: actions/upload-artifact@v3
with:
name: pr-id
path: ./pr-id.txt
- name: Upload PR ref
uses: actions/upload-artifact@v3
with:
name: pr-ref
path: ./pr-ref.txt
- name: Upload PR repo
uses: actions/upload-artifact@v3
with:
name: pr-repo
path: ./pr-repo.txt