-
Notifications
You must be signed in to change notification settings - Fork 240
46 lines (42 loc) · 1.37 KB
/
push_checks_dev.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
name: Post Push Checks and Commits
on:
push:
branches: [ dev ]
jobs:
check_commit:
name: Check Last Commit 📝
runs-on: ubuntu-latest
outputs:
commit_message: ${{ steps.get_head_commit_message.outputs.HEAD_COMMIT_MESSAGE }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
lfs: true
ssh-key: ${{ secrets.DEPLOY_KEY }}
- name: Get Head Commit Message
id: get_head_commit_message
run: echo "HEAD_COMMIT_MESSAGE=$(git show -s --format=%s)" >> "$GITHUB_OUTPUT"
pre_job:
name: Pre Job 🚀
runs-on: ubuntu-latest
if: ${{ needs.check_commit.outputs.commit_message != 'Sync Dependencies - Auto Commit' }}
needs: [ check_commit ]
steps:
- run: echo "Proceeding to checks..."
sync_dependencies:
name: Sync Dependencies 🔄
uses: ChainSafe/web3.unity/.github/workflows/sync_dependencies.yaml@main
needs: [ pre_job ]
secrets: inherit
duplicate_samples:
name: Duplicate Samples 🪞
uses: ChainSafe/web3.unity/.github/workflows/duplicate_samples.yaml@main
needs: [ sync_dependencies ]
secrets: inherit
unity_tests:
name: Unity Tests 🧪
uses: ChainSafe/web3.unity/.github/workflows/unity_tests.yml@main
needs: [ sync_dependencies ]
secrets: inherit