-
-
Notifications
You must be signed in to change notification settings - Fork 33
50 lines (41 loc) · 1.06 KB
/
pull.yaml
File metadata and controls
50 lines (41 loc) · 1.06 KB
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
name: "Pull"
on:
pull_request_target:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pull:
name: "Pull"
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
pull-requests: write
issues: write
steps:
- name: "Debug CTX github"
continue-on-error: true
env:
GITHUB_CTX: ${{ toJSON(github) }}
run: echo "$GITHUB_CTX"
- name: "Checkout Pull"
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: "Debug"
continue-on-error: true
run: |
echo "::group::ls"
ls -lAh .
echo "::endgroup::"
echo "::group::tree"
tree .
echo "::endgroup::"
#- name: "NPM Outdated Check"
# continue-on-error: true
# uses: cssnr/npm-outdated-action@latest
- name: "Actions Up"
continue-on-error: true
uses: cssnr/actions-up-action@latest
with:
exclude: "cssnr/.*,actions/.*"