-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[.github]: update github templates and workflows (#67)
- Loading branch information
Showing
6 changed files
with
57 additions
and
19 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 |
---|---|---|
@@ -1,30 +1,27 @@ | ||
<!-- The title should briefly describe the type of change (e.g., Bugfix: Fix issue with user login, Feature: Add new reporting dashboard) --> | ||
|
||
## Description | ||
**What does this PR do?** | ||
|
||
<!-- What does this PR do? | ||
Explain the change, feature, or bugfix in clear terms. Focus on what has been changed or added. Provide enough context for someone unfamiliar with the issue to understand the scope. --> | ||
<!-- Explain the change, feature, or bugfix in clear terms. Focus on what has been changed or added. Provide enough context for someone unfamiliar with the issue to understand the scope. --> | ||
|
||
## Motivation | ||
**Why is this change necessary?** | ||
|
||
<!-- Why is this change necessary? | ||
Explain the reason for the change, whether it's to fix a bug, introduce a new feature, or improve performance. Highlight the value it brings and any pain points it solves. --> | ||
<!-- Explain the reason for the change, whether it's to fix a bug, introduce a new feature, or improve performance. Highlight the value it brings and any pain points it solves. --> | ||
|
||
## Implementation Details | ||
**How was this change implemented?** | ||
|
||
<!-- How was this change implemented? | ||
Discuss the technical approach and reasoning behind the key decisions you made. Include any trade-offs, design considerations, or architectural changes that impacted the solution. If applicable, mention alternatives you considered. --> | ||
<!-- Discuss the technical approach and reasoning behind the key decisions you made. Include any trade-offs, design considerations, or architectural changes that impacted the solution. If applicable, mention alternatives you considered. --> | ||
|
||
## Screenshots / Visual Changes | ||
**Screenshots / Visual Changes** | ||
|
||
<!-- If applicable, include screenshots or GIFs that demonstrate visual changes, UI updates, or new features in action. Remove this section if it's not relevant. --> | ||
|
||
## Related Issues | ||
**Related Issues** | ||
|
||
<!-- List the issues that this PR closes or relates to. | ||
Use closing keywords like "Closes #123", "Fixes #456", or mention "Related to #789" for partially addressed issues. --> | ||
|
||
## Additional Considerations | ||
**Additional Considerations** | ||
|
||
<!-- Any additional information or considerations that the reviewer should be aware of. | ||
Mention anything that could impact other parts of the system, potential backward incompatibilities, or plans for future refactoring. --> |
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,41 @@ | ||
name: Build web-ext | ||
|
||
on: | ||
push: | ||
paths: | ||
- "web-ext/**" | ||
pull_request: | ||
paths: | ||
- "web-ext/**" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_firefox: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Bun | ||
uses: oven-sh/setup-bun@v1 | ||
|
||
- name: Install Dependencies | ||
run: cd web-ext && bun install | ||
|
||
- name: Build for Firefox | ||
run: cd web-ext && bun run build:firefox | ||
|
||
build_chrome: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Bun | ||
uses: oven-sh/setup-bun@v1 | ||
|
||
- name: Install Dependencies | ||
run: cd web-ext && bun install | ||
|
||
- name: Build for Firefox | ||
run: cd web-ext && bun run build |
2 changes: 1 addition & 1 deletion
2
...b/workflows/build-and-deploy-to-pages.yml → .github/workflows/deploy-docs.yml
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,4 +1,4 @@ | ||
name: Build and Deploy to Pages | ||
name: Deploy Docs | ||
|
||
on: | ||
push: | ||
|