forked from go-gitea/gitea
-
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 branch 'main' into milestone-labels
* main: (90 commits) Refactor rename user and rename organization (go-gitea#24052) Use `CommentList` instead of `[]*Comment` (go-gitea#24828) Fix topics deleted via API not being deleted in org page (go-gitea#24825) Return `404` in the API if the requested webhooks were not found (go-gitea#24823) Decouple the different contexts from each other (go-gitea#24786) [skip ci] Updated translations via Crowdin Add RTL rendering support to Markdown (go-gitea#24816) [skip ci] Updated translations via Crowdin Update JS dependencies (go-gitea#24815) Fix duplicate tooltip hiding (go-gitea#24814) Mute repo names in dashboard repo list (go-gitea#24811) Rework label colors (go-gitea#24790) Fix max width and margin of comment box on conversation page (go-gitea#24809) Allow all URL schemes in Markdown links by default (go-gitea#24805) Some refactors for issues stats (go-gitea#24793) Implement actions artifacts (go-gitea#22738) Fix Actions being enabled accidentally (go-gitea#24802) Change `add_on` in `keys_ssh.tmpl` (go-gitea#24803) replace `drone exec` to `act_runner exec` in test README.md (go-gitea#24791) Fix OAuth loading state (go-gitea#24788) ...
- Loading branch information
Showing
326 changed files
with
10,413 additions
and
6,443 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
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,43 @@ | ||
name: compliance | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- "*.md" | ||
|
||
jobs: | ||
compliance-docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
lint-backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
lint-go-windows: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
lint-go-gogit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
checks-backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
backend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" |
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,38 @@ | ||
name: db-tests | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- "*.md" | ||
|
||
jobs: | ||
test-pgsql: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
test-sqlite: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
test-unit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
test-mysql5: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
test-mysql8: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" | ||
|
||
test-mssql: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" |
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,13 @@ | ||
name: docker-dryrun | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- "*.md" | ||
|
||
jobs: | ||
docker-dryrun: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" |
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,13 @@ | ||
name: e2e-tests | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "docs/**" | ||
- "*.md" | ||
|
||
jobs: | ||
test-e2e: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: echo "No build required" |
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
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.