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 remote-tracking branch 'upstream/main'
* upstream/main: Remove the service worker (go-gitea#25010) Add user level action runners (go-gitea#24995) Update github.com/google/go-github to v52 (go-gitea#24004) various style fixes (go-gitea#25008) Add show timestamp/seconds and fullscreen options to action page (go-gitea#24876) Fix markdown link to awesome gitea (go-gitea#25009) Followup to pinned Issues (go-gitea#24945) revert the removed method to fix tmpl break on graph page (go-gitea#25005) Refactor diffFileInfo / DiffTreeStore (go-gitea#24998) Fix delete user account modal (go-gitea#25004) Clean up github actions (go-gitea#24984)
- Loading branch information
Showing
57 changed files
with
482 additions
and
385 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 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 |
---|---|---|
@@ -1,32 +1,53 @@ | ||
name: files changed | ||
name: files-changed | ||
|
||
on: | ||
workflow_call: | ||
outputs: | ||
docs: | ||
description: "whether docs files changed" | ||
value: ${{ jobs.files-changed.outputs.docs }} | ||
backend: | ||
description: "whether backend files changed" | ||
value: ${{ jobs.files-changed.outputs.backend }} | ||
value: ${{ jobs.detect.outputs.backend }} | ||
frontend: | ||
description: "whether frontend files changed" | ||
value: ${{ jobs.files-changed.outputs.frontend }} | ||
value: ${{ jobs.detect.outputs.frontend }} | ||
docs: | ||
description: "whether docs files changed" | ||
value: ${{ jobs.detect.outputs.docs }} | ||
actions: | ||
description: "whether actions files changed" | ||
value: ${{ jobs.detect.outputs.actions }} | ||
|
||
jobs: | ||
files-changed: | ||
detect: | ||
name: detect which files changed | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
# Map a step output to a job output | ||
outputs: | ||
docs: ${{ steps.changes.outputs.docs }} | ||
backend: ${{ steps.changes.outputs.backend }} | ||
frontend: ${{ steps.changes.outputs.frontend }} | ||
docs: ${{ steps.changes.outputs.docs }} | ||
actions: ${{ steps.changes.outputs.actions }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Check for backend file changes | ||
uses: dorny/paths-filter@v2 | ||
- uses: dorny/paths-filter@v2 | ||
id: changes | ||
with: | ||
filters: .github/file-filters.yml | ||
filters: | | ||
backend: | ||
- "**/*.go" | ||
- "**/*.tmpl" | ||
- "go.mod" | ||
- "go.sum" | ||
frontend: | ||
- "**/*.js" | ||
- "web_src/**" | ||
- "package.json" | ||
- "package-lock.json" | ||
docs: | ||
- "**/*.md" | ||
- "docs/**" | ||
actions: | ||
- ".github/workflows/*" |
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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 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
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.