Skip to content

Commit

Permalink
Meta: Update for GitHub org rename to LadybirdBrowser
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Jun 9, 2024
1 parent c86e896 commit c096608
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:

jobs:
Lagom:
if: github.repository == 'LadybirdWebBrowser/ladybird'
if: github.repository == 'LadybirdBrowser/ladybird'

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

jobs:
build:
if: github.repository == 'LadybirdWebBrowser/ladybird'
if: github.repository == 'LadybirdBrowser/ladybird'
runs-on: ubuntu-latest
steps:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/libjs-test262.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
run_and_update_results:
runs-on: self-hosted
if: false
#if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master'
#if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master'

concurrency: libjs-test262

Expand All @@ -19,7 +19,7 @@ jobs:
echo "Cleaning up previous run"
rm -rf "${{ github.workspace }}/*"
- name: Checkout LadybirdWebBrowser/ladybird
- name: Checkout LadybirdBrowser/ladybird
uses: actions/checkout@v4

- name: Checkout SerenityOS/libjs-test262
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lintcommits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on: [pull_request_target]
jobs:
lint_commits:
runs-on: ubuntu-22.04
if: always() && github.repository == 'LadybirdWebBrowser/ladybird'
if: always() && github.repository == 'LadybirdBrowser/ladybird'

steps:
- name: Lint PR commits
Expand Down Expand Up @@ -91,4 +91,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.LADYBIRD_BOT_TOKEN }}
with:
msg: "Hello!\n\nOne or more of the commit messages in this PR do not match the Ladybird [code submission policy](https://github.com/LadybirdWebBrowser/ladybird/blob/master/CONTRIBUTING.md#code-submission-policy), please check the `lint_commits` CI job for more details on which commits were flagged and why.\nPlease do not close this PR and open another, instead modify your commit message(s) with [git commit --amend](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message) and force push those changes to update this PR."
msg: "Hello!\n\nOne or more of the commit messages in this PR do not match the Ladybird [code submission policy](https://github.com/LadybirdBrowser/ladybird/blob/master/CONTRIBUTING.md#code-submission-policy), please check the `lint_commits` CI job for more details on which commits were flagged and why.\nPlease do not close this PR and open another, instead modify your commit message(s) with [git commit --amend](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/changing-a-commit-message) and force push those changes to update this PR."
2 changes: 1 addition & 1 deletion .github/workflows/nightly-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ concurrency:
jobs:
CI:
runs-on: ${{ matrix.os }}
if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master'
if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master'
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/serenity-js-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
build-and-package:
runs-on: ${{ matrix.os }}
if: always() && github.repository == 'LadybirdWebBrowser/ladybird' && github.ref == 'refs/heads/master'
if: always() && github.repository == 'LadybirdBrowser/ladybird' && github.ref == 'refs/heads/master'
strategy:
fail-fast: false
matrix:
Expand All @@ -28,7 +28,7 @@ jobs:
cancel-in-progress: true

steps:
- name: Checkout LadybirdWebBrowser/ladybird
- name: Checkout LadybirdBrowser/ladybird
uses: actions/checkout@v4

- name: "Set up environment"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
steps:
- name: Checkout LadybirdWebBrowser/ladybird
- name: Checkout LadybirdBrowser/ladybird
uses: actions/checkout@v4

- name: Checkout SerenityOS/libjs-data libjs-wasm
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Nobody is perfect, and sometimes we mess things up. That said, here are some goo
**Do:**

* Write in idiomatic SerenityOS-style C++23, using the `AK` containers in all code.
* Conform to the project coding style found in [CodingStyle.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18.
* Conform to the project coding style found in [CodingStyle.md](https://github.com/LadybirdBrowser/ladybird/blob/master/Documentation/CodingStyle.md). Use `clang-format` (version 18 or later) to automatically format C++ files. See [AdvancedBuildInstructions.md](https://github.com/LadybirdBrowser/ladybird/blob/master/Documentation/AdvancedBuildInstructions.md#clang-format-updates) for instructions on how to get an up-to-date version if your OS distribution does not ship clang-format-18.
* Choose expressive variable, function and class names. Make it as obvious as possible what the code is doing.
* Split your changes into separate, atomic commits (i.e. A commit per feature or fix, where the build, tests and the system are all functioning).
* Make sure your commits are rebased on the master branch.
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Browser/LibWebFromLoadingToPainting.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ We separate CSS rules by their cascade origin. The two origins we're concerned w

The cascade origin determines the processing order for rules. The "user-agent" style is the least important, so it gets processed first. Then author style is added on top of that.

Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/LadybirdWebBrowser/ladybird/blob/master/Userland/Libraries/LibWeb/CSS/Default.css).
Note: the user-agent style is a built-in CSS style sheet that lives in the LibWeb source code [here](https://github.com/LadybirdBrowser/ladybird/blob/master/Userland/Libraries/LibWeb/CSS/Default.css).

The end product of style computation is a fully populated StyleProperties object. It has a StyleValue for each CSS::PropertyID. In spec parlance, these are the *computed* values. (Note that these are not the same as you get from `getComputedStyle()`, that API returns the *resolved* values.)

Expand Down
2 changes: 1 addition & 1 deletion Documentation/SelfHostedRunners.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ tar xzf ./actions-runner-linux-x64-X.X.X.tar.gz
```
### Link the runner to the repository
```shell
./config.sh --url https://github.com/LadybirdWebBrowser/ladybird --token INSERT_SECRET_TOKEN_HERE
./config.sh --url https://github.com/LadybirdBrowser/ladybird --token INSERT_SECRET_TOKEN_HERE
```
### Configure the runner to protect against malicious PRs by adding the following line to .env:
```shell
Expand Down
2 changes: 1 addition & 1 deletion Meta/Lagom/Fuzzers/FuzzilliJs.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FROM fedora:39 AS serenity-build

WORKDIR /home
RUN dnf install -y clang cmake git-core ninja-build
RUN git clone --depth=1 https://github.com/LadybirdWebBrowser/ladybird
RUN git clone --depth=1 https://github.com/LadybirdBrowser/ladybird

RUN cd ladybird/Meta/Lagom && ./BuildFuzzers.sh

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Security Policy

Ladybird is unreleased software still in early development, and so bugs and vulnerabilities can be safely disclosed publicly. If you find an issue, we would prefer if you report it as a [GitHub issue](https://github.com/LadybirdWebBrowser/ladybird/issues/new). If your issue was found using a fuzzer, please check [oss-fuzz](https://bugs.chromium.org/p/oss-fuzz/issues/list?q=label:Proj-serenity) first to see if it has already been recorded.
Ladybird is unreleased software still in early development, and so bugs and vulnerabilities can be safely disclosed publicly. If you find an issue, we would prefer if you report it as a [GitHub issue](https://github.com/LadybirdBrowser/ladybird/issues/new). If your issue was found using a fuzzer, please check [oss-fuzz](https://bugs.chromium.org/p/oss-fuzz/issues/list?q=label:Proj-serenity) first to see if it has already been recorded.

0 comments on commit c096608

Please sign in to comment.