-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge staging/4.1.3 into stable/4.1.x. Update 20240312
* commit '7e10e3f80bc28f6a87cbb7ff426e84dd5fd3ab4f': (90 commits) Add cascade deletion to new motion fields (#2243) (#2284) Update all translations (#2282) Implement certain preventions for changing active speakers state (#2272) Update meta (#2269) Implement cascade delete for amendments (#2253) Automatically create PRs for commits on staging branches (#2256) Add staging branches to CI (#2255) Fix PoO for others (#2242) Make SLLoS ignore point-of-order time (#2240) Bump types-bleach in /requirements/partial (#2238) Update meta repository (#2235) Implement motion import (#1923) Enhance speaker creation (#2231) Add migration command to clear collectionfield tables (#2217) Allow initial_time to be changed regardless of speach status (#2220) Bump types-simplejson in /requirements/partial (#2223) Bump types-redis in /requirements/partial (#2221) Bump pypdf[crypto] from 4.0.1 to 4.0.2 in /requirements/partial (#2222) Bump pytest from 8.0.0 to 8.0.1 in /requirements/partial (#2224) Bump types-requests in /requirements/partial (#2225) ...
- Loading branch information
Showing
698 changed files
with
24,452 additions
and
10,404 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,54 @@ | ||
name: Copy staging commits to main | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'staging/4*' | ||
|
||
|
||
jobs: | ||
create-pr-for-main: | ||
name: Create PR against main branch | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout main | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: main | ||
|
||
- name: Set git credentials | ||
run: | | ||
git config --global user.name openslides-automation | ||
git config --global user.email [email protected] | ||
- name: Cherry-pick new commit | ||
id: cherry-pick | ||
run: | | ||
git fetch origin | ||
git cherry-pick ${{ github.sha }} || { | ||
echo "error=1" >> $GITHUB_OUTPUT | ||
git add . | ||
git cherry-pick --continue | ||
} | ||
- name: Generate access token | ||
uses: tibdex/github-app-token@v2 | ||
id: generate-token | ||
with: | ||
app_id: ${{ secrets.AUTOMATION_APP_ID }} | ||
private_key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }} | ||
|
||
- name: Create or update PR | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
commit-message: ${{ github.event.commits[0].message }} | ||
branch: apply/commit-${{ github.sha }} | ||
delete-branch: true | ||
title: ${{ github.event.commits[0].message }} | ||
body: "Triggered by commit [${{ github.sha }}](https://github.com/${{ github.repository }}/commit/${{ github.sha }})\n\n${{ steps.cherry-pick.outputs.error && 'There were conflicts during the cherry-pick. These were commited without any resolving. Please resolve them manually and push the result to this branch before merging.' || 'The cherry-pick was successful without any conflicts. You should be able to simply merge this PR.' }}" | ||
reviewers: ${{ github.event.commits[0].author.username }} | ||
assignees: ${{ github.event.commits[0].author.username }} | ||
labels: staging-port | ||
milestone: 4 |
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,3 @@ | ||
[submodule "openslides-meta"] | ||
path = global/meta | ||
url = https://github.com/OpenSlides/openslides-meta.git |
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
Oops, something went wrong.