Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b535637
Revert "automated duplicating imported samples modifications (#595)"
robGG1997 Sep 14, 2023
95fb832
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 14, 2023
e3ab3c2
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 14, 2023
a536df0
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 15, 2023
c12a0de
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 18, 2023
8e1ea0a
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 18, 2023
1318cd7
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 21, 2023
33b8e52
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 22, 2023
0a205bd
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 25, 2023
df4795a
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 29, 2023
abc34f6
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Sep 29, 2023
031e8d3
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Oct 18, 2023
3a4bdd9
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Oct 24, 2023
67d871d
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Oct 25, 2023
3c1d099
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Oct 30, 2023
ed22cb7
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Oct 31, 2023
4c8b282
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Nov 1, 2023
ea609de
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Nov 2, 2023
adcb974
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Nov 2, 2023
77dd93a
Merge branch 'main' of https://github.com/ChainSafe/web3.unity
robGG1997 Nov 3, 2023
2461a8d
auto commit on PR then run tests manually on labeling with ready-to-m…
robGG1997 Nov 6, 2023
cadd08e
trigger checks when PR is out of draft and ready for review too
robGG1997 Nov 6, 2023
cc63416
reverted auto commit actions triggers to workflow call and added a ne…
robGG1997 Nov 6, 2023
7655e16
new workflow for auto commiting
robGG1997 Nov 6, 2023
0bb2992
small typo fix
robGG1997 Nov 6, 2023
68e9a67
Merge branch 'main' into rob/trigger-tests-with-label-709
robGG1997 Nov 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/pre_pull_request_auto_commits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Auto Commits

on:
pull_request:
branches: [ main ]

jobs:
duplicate_samples:
name: Duplicate Samples
uses: ChainSafe/web3.unity/.github/workflows/duplicate_samples.yml@main
publish_dependencies:
name: Publish Dependencies
uses: ChainSafe/web3.unity/.github/workflows/publish_dependencies.yml@main
needs: [duplicate_samples]
12 changes: 4 additions & 8 deletions .github/workflows/pre_pull_request_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,15 @@ name: Merge Checks
on:
pull_request:
branches: [ main ]
types:
- labeled
- ready_for_review

jobs:
duplicate_samples:
name: Duplicate Samples
uses: ChainSafe/web3.unity/.github/workflows/duplicate_samples.yml@main
publish_dependencies:
name: Publish Dependencies
uses: ChainSafe/web3.unity/.github/workflows/publish_dependencies.yml@main
needs: [duplicate_samples]
web3_tests:
name: Web3 Tests
if: ${{ github.event.action == 'ready_for_review' || github.event.label.name == 'ready-to-merge'}}
uses: ChainSafe/web3.unity/.github/workflows/test.yaml@main
needs: [publish_dependencies]
unity_tests:
name: Unity Tests
uses: ChainSafe/web3.unity/.github/workflows/unity_tests.yml@main
Expand Down