-
Notifications
You must be signed in to change notification settings - Fork 2
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 dependabot/npm_and_yarn/minimist-and-lando/l…
…eia--removed
- Loading branch information
Showing
14 changed files
with
286 additions
and
198 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
### Bare minimum self-checks | ||
|
||
> [What do you think of a person who only does the bare minimum?](https://getyarn.io/yarn-clip/dcf80710-425e-478b-bde1-c107bd11e849) | ||
- [ ] I've updated this PR with the latest code from `main` | ||
- [ ] I've done a cursory QA pass of my code locally | ||
- [ ] I've ensured all automated status check and tests pass | ||
- [ ] I've [connected this PR to an issue](https://help.zenhub.com/support/solutions/articles/43000010350-connecting-pull-requests-to-github-issues) | ||
|
||
### Pieces of flare | ||
|
||
- [ ] I've written a unit or functional test for my code | ||
- [ ] I've updated relevant documentation it my code changes it | ||
- [ ] I've updated this repo's README if my code changes it | ||
- [ ] I've updated this repo's CHANGELOG with my change unless its a trivial change (like updating a typo in the docs) | ||
|
||
### Finally | ||
|
||
- [ ] I've [requested a review](https://help.github.com/en/articles/requesting-a-pull-request-review) with relevant people | ||
|
||
If you have any issues or need help please join the `#contributors` channel in the [Lando slack](https://www.launchpass.com/devwithlando) and someone will gladly help you out! | ||
|
||
You can also check out the [coder guide](https://docs.lando.dev/contrib/coder.html). |
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,19 @@ | ||
name: Add to Contrib Project | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
pull_request: | ||
types: [labeled] | ||
|
||
jobs: | ||
add_to_project: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Add issue/PR to GitHub Project | ||
if: github.event.label.name == 'flag' | ||
uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/lando/projects/7 | ||
github-token: ${{ secrets.SHADOW_COUNCIL_ESCALATOR }} | ||
labeled: flag |
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
- ubuntu-24.04 | ||
node-version: | ||
- '18' | ||
steps: | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
- ubuntu-24.04 | ||
node-version: | ||
- '18' | ||
steps: | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
matrix: | ||
os: | ||
- windows-2022 | ||
- ubuntu-22.04 | ||
- ubuntu-24.04 | ||
- macos-12 | ||
node-version: | ||
- '18' | ||
|
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,7 +15,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
- ubuntu-24.04 | ||
node-version: | ||
- '18' | ||
steps: | ||
|
@@ -42,6 +42,9 @@ jobs: | |
uses: lando/prepare-release-action@v3 | ||
with: | ||
lando-plugin: true | ||
sync-email: [email protected] | ||
sync-token: ${{ secrets.RTFM47_COAXIUM_INJECTOR }} | ||
sync-username: rtfm-47 | ||
|
||
# Deploy | ||
- name: Publish to npm | ||
|
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,14 +1,24 @@ | ||
name: lando-redis-plugin | ||
name: docs.redis | ||
proxy: | ||
cli: | ||
- docs.redis.lndo.site:5173 | ||
services: | ||
node: | ||
type: node:18 | ||
build: | ||
- npm install | ||
cli: | ||
api: 4 | ||
image: node:18 | ||
command: sleep infinity | ||
ports: | ||
- 5173:5173/http | ||
scanner: false | ||
ssl: false | ||
sslExpose: false | ||
user: node | ||
build: | ||
app: | | ||
npm install | ||
tooling: | ||
node: | ||
service: node | ||
service: cli | ||
npm: | ||
service: node | ||
service: cli | ||
vitepress: | ||
service: cli | ||
cmd: npx vitepress |
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.