-
Notifications
You must be signed in to change notification settings - Fork 1
71 lines (57 loc) · 1.72 KB
/
on-pull-request.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build
on:
pull_request:
branches: [main]
jobs:
verify-user-permissions:
runs-on: ubuntu-latest
steps:
- name: Get User Permission
id: checkAccess
uses: actions-cool/check-user-permission@v2
with:
require: write
username: ${{ github.triggering_actor }}
- name: Check User Permission
if: steps.checkAccess.outputs.require-result == 'false'
run: |
echo "${{ github.triggering_actor }} does not have permissions on this repo."
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}"
echo "Job originally triggered by ${{ github.actor }}"
exit 1
checkout-default:
needs: verify-user-permissions
name: Checkout action using default ref
runs-on: ubuntu-latest
env:
SUPER_SECRET: ${{ secrets.SUPER_SECRET }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Test secret access
run: |
if [[ "x${{ env.SUPER_SECRET }}" == "" ]]; then
echo "No access to secrets"
exit 1
else
echo "Access to secrets!"
fi
checkout-test-merge-commit:
needs: verify-user-permissions
name: Checkout action using default ref
runs-on: ubuntu-latest
env:
SUPER_SECRET: ${{ secrets.SUPER_SECRET }}
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.merge_commit_sha }}
- name: Test secret access
run: |
if [[ "x${{ env.SUPER_SECRET }}" == "" ]]; then
echo "No access to secrets"
exit 1
else
echo "Access to secrets!"
fi