forked from zed-industries/zed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into HEAD
- Loading branch information
Showing
928 changed files
with
49,746 additions
and
29,042 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Bump collab-staging Tag | ||
|
||
on: | ||
schedule: | ||
# Fire every day at 16:00 UTC (At the start of the US workday) | ||
- cron: "0 16 * * *" | ||
|
||
jobs: | ||
update-collab-staging-tag: | ||
if: github.repository_owner == 'zed-industries' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Update collab-staging tag | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git tag -f collab-staging | ||
git push origin collab-staging --force |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,11 +15,10 @@ concurrency: | |
jobs: | ||
bump_patch_version: | ||
runs-on: | ||
- self-hosted | ||
- test | ||
- buildjet-16vcpu-ubuntu-2204 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | ||
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | ||
with: | ||
ref: ${{ github.event.inputs.branch }} | ||
ssh-key: ${{ secrets.ZED_BOT_DEPLOY_KEY }} | ||
|
@@ -42,7 +41,7 @@ jobs: | |
exit 1 | ||
;; | ||
esac | ||
which cargo-set-version > /dev/null || cargo install cargo-edit --features vendored-openssl | ||
which cargo-set-version > /dev/null || cargo install cargo-edit | ||
output=$(cargo set-version -p zed --bump patch 2>&1 | sed 's/.* //') | ||
git commit -am "Bump to $output for @$GITHUB_ACTOR" --author "Zed Bot <[email protected]>" | ||
git tag v${output}${tag_suffix} | ||
|
Oops, something went wrong.