Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump common #262

Merged
merged 16 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
69f7f7d
add dispatch receiver for drift-common update
wphan Oct 3, 2024
0a42cdf
Bumping drift-common to
github-actions[bot] Oct 3, 2024
64525c6
Bumping drift-common to 9ae39023084feedce0faf12956f1e6ae18524ed8
github-actions[bot] Oct 3, 2024
88f021f
Bumping drift-common to cd155c03379910fb37c8361f5db22e85782e15ae
github-actions[bot] Oct 3, 2024
0151080
Bumping drift-common to a143eea3b0d3ebd8a0bbb5878415066fc24f9084
github-actions[bot] Oct 3, 2024
47a5be0
bump common
lowkeynicc Oct 3, 2024
a141325
Bumping drift-common to df7e2e0758abe814252d3ca50ee6d552a606e6b7
github-actions[bot] Oct 8, 2024
91ee912
Bumping drift-common to d2a77f6b60cb045380f0d28b5b18644d43171182
github-actions[bot] Oct 8, 2024
fdec185
Bumping drift-common to a906617d5ee9bf0b43bc32ad49ddcf1546331d1e
github-actions[bot] Oct 8, 2024
60a49fa
Bumping drift-common to 2c04239a8222dcc8d3d17265c16c6a93cf3367dd
github-actions[bot] Oct 8, 2024
b47891b
Bumping drift-common to a5a708b7ba3d7acbacc78896cb13cb2084c95854
github-actions[bot] Oct 9, 2024
f60529d
Bumping drift-common to cd9c0c0e13ec3619e8988522c8f3e1cfe112057f
github-actions[bot] Oct 9, 2024
30cba96
Bumping drift-common to 37b40b7883afd7c0f813c92b5259bd4f469957a9
github-actions[bot] Oct 9, 2024
6cb89ff
Bumping drift-common to d219ad72a4f41855e50ca151d4aeb7087071e322
github-actions[bot] Oct 10, 2024
b6d1677
Bumping drift-common to 0a41a73f95a1c3be50e2db0c1fc9eba3fbf95d39
github-actions[bot] Oct 10, 2024
6225073
Bumping drift-common to 3bece9cac80c0c2fbe6a12c874d16fd45c6ca66a
github-actions[bot] Oct 10, 2024
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
22 changes: 22 additions & 0 deletions .github/workflows/deploy-on-drift-common-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy on drift-common update
on:
repository_dispatch:
types: [drift-common-update]

jobs:
update-submodules:
runs-on: ubicloud
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive'

- name: Bump protocol sdk
run: |
git submodule update --remote
git config user.name "GitHub Actions"
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git add drift-common
git commit --allow-empty -m "Bumping drift-common to ${{ github.event.client_payload.commit}}"
git push
Loading