Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: hash generated files #15253

Merged
merged 2 commits into from
Jun 18, 2024
Merged

fix: hash generated files #15253

merged 2 commits into from
Jun 18, 2024

Conversation

lodmfjord
Copy link
Member

@lodmfjord lodmfjord commented Jun 18, 2024

...

Attach a link to issue if relevant

What

Specify what you're trying to achieve

Why

Specify why you need to achieve this

Screenshots / Gifs

Attach Screenshots / Gifs to help reviewers understand the scope of the pull request

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • Refactor

    • Improved hashing mechanism for caching generated files by introducing getGeneratedFilesHash and removing getGeneratedFileHash.
    • Cleaned up unused constants and imports related to the old hashing function.
  • Chores

    • Removed obsolete constants and unnecessary blank lines to maintain code cleanliness.

@lodmfjord lodmfjord added deploy-feature Deploys features to dev test everything 💀 test & build everything 💀 labels Jun 18, 2024
@lodmfjord lodmfjord requested a review from a team as a code owner June 18, 2024 10:59
Copy link
Contributor

coderabbitai bot commented Jun 18, 2024

Walkthrough

Recent modifications involve the refactor of hash generation for caching scripts in the CI environment. The singular file hash function (getGeneratedFileHash) was replaced with a multi-file variant (getGeneratedFilesHash). The update simplifies the hash computation by reading content from specified files and applies the SHA-1 algorithm.

Changes

File Change Summary
scripts/ci/cache/__config.mjs Removed getGeneratedFileHash and introduced getGeneratedFilesHash
scripts/ci/cache/_const.mjs Removed HASH_GENERATE_FILES_SCRIPT constant
scripts/ci/cache/_generated_files.mjs New file introduced getGeneratedFilesHash function
scripts/ci/cache/_utils.mjs Removed exec import and getGeneratedFileHash function along with related constants and logic

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Outside diff range and nitpick comments (1)
scripts/ci/cache/_utils.mjs (1)

Line range hint 33-33: Optimize the use of spread syntax in getPackageHash.

The use of the spread syntax in the reduce function can lead to performance issues due to its O(n^2) complexity in this context. Consider using a more efficient method such as .push or directly modifying the accumulator.

export async function getPackageHash(
  root = ROOT,
  keys = ['resolutions', 'dependencies', 'devDependencies'],
) {
  const content = await getPackageJSON(root);
  const value = keys.reduce((a, b) => {
    a[b] = content[b];
    return a;
  }, {});
  return crypto.createHash('sha256').update(JSON.stringify(value)).digest('hex');
}
Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 89f9537 and 2606219.

Files ignored due to path filters (1)
  • scripts/ci/cache/yarn.lock is excluded by !**/yarn.lock, !**/*.lock
Files selected for processing (5)
  • scripts/ci/cache/__config.mjs (3 hunks)
  • scripts/ci/cache/_const.mjs (1 hunks)
  • scripts/ci/cache/_generated_files.mjs (1 hunks)
  • scripts/ci/cache/_utils.mjs (1 hunks)
  • scripts/ci/cache/package.json (1 hunks)
Files skipped from review due to trivial changes (2)
  • scripts/ci/cache/_const.mjs
  • scripts/ci/cache/package.json
Additional context used
Path-based instructions (3)
scripts/ci/cache/_generated_files.mjs (1)

Pattern scripts/**/*: "Confirm that the code adheres to the following:

  • Script efficiency, readability, and maintainability.
  • Usage of environmental variables and configuration files for flexibility.
  • Integration with NX workspace utilities and commands."
scripts/ci/cache/__config.mjs (1)

Pattern scripts/**/*: "Confirm that the code adheres to the following:

  • Script efficiency, readability, and maintainability.
  • Usage of environmental variables and configuration files for flexibility.
  • Integration with NX workspace utilities and commands."
scripts/ci/cache/_utils.mjs (1)

Pattern scripts/**/*: "Confirm that the code adheres to the following:

  • Script efficiency, readability, and maintainability.
  • Usage of environmental variables and configuration files for flexibility.
  • Integration with NX workspace utilities and commands."
Biome
scripts/ci/cache/_utils.mjs

[error] 33-33: Avoid the use of spread (...) syntax on accumulators. (lint/performance/noAccumulatingSpread)

Spread syntax should be avoided on accumulators (like those in .reduce) because it causes a time complexity of O(n^2).
Consider methods such as .splice or .push instead.

Additional comments not posted (2)
scripts/ci/cache/__config.mjs (2)

22-22: Integration of getGeneratedFilesHash seems correct.

The addition of getGeneratedFilesHash from './_generated_files.mjs' is correctly imported and used in this file. This change aligns with the PR's objective to manage hashing of generated files more effectively.


88-88: Validate the integration and usage of multiple asynchronous operations.

Given that multiple asynchronous hash computations and other operations are involved in constructing the cache key, it's critical to ensure that they are correctly awaited and integrated. This is crucial for maintaining the integrity and correctness of the cache mechanism.

Verification successful

The functions getYarnLockHash, getPackageHash, getGeneratedFilesHash, and runCommand are all defined as asynchronous in their respective files. This confirms that they are correctly awaited in the scripts/ci/cache/__config.mjs file. The integration of these asynchronous operations in constructing the cache key is thus maintained correctly.

  • getYarnLockHash: Defined as async in scripts/ci/get-node-modules-hash.mjs and scripts/ci/cache/_utils.mjs.
  • getPackageHash: Defined as async in scripts/ci/get-node-modules-hash.mjs and scripts/ci/cache/_utils.mjs.
  • getGeneratedFilesHash: Defined as async in scripts/ci/cache/_generated_files.mjs.
  • runCommand: Defined as async in scripts/ci/cache/_utils.mjs.
Scripts executed

The following scripts were executed for the analysis:


Script:

#!/bin/bash
# Description: Verify correct integration and usage of asynchronous operations in cache configuration.

# Test: Check for proper usage of `await` with asynchronous functions.
rg --type python $'await'

Length of output: 55



Script:

#!/bin/bash
# Description: Verify correct integration and usage of asynchronous operations in cache configuration.

# Test: Check for proper usage of `await` with asynchronous functions in the specified JavaScript file.
rg 'await' scripts/ci/cache/__config.mjs

Length of output: 1287



Script:

#!/bin/bash
# Description: Verify that functions used with `await` are asynchronous.

# Find definitions of functions used with `await` in the specified JavaScript file.
ast-grep --lang javascript --pattern 'async function $_($$$) { $$$ }' scripts/ci/cache/__config.mjs

Length of output: 101



Script:

#!/bin/bash
# Description: Verify that functions used with `await` are asynchronous.

# Find definitions of functions used with `await`, including async arrow functions and imports.
ast-grep --lang javascript --pattern 'const $_ = async ($$$) => { $$$ }' scripts/ci/cache/__config.mjs
ast-grep --lang javascript --pattern 'import { $_ } from $$$' scripts/ci/cache/__config.mjs

Length of output: 543



Script:

#!/bin/bash
# Description: Verify that functions used with `await` are asynchronous.

# Find all function definitions in the specified JavaScript file.
ast-grep --lang javascript --pattern 'function $_($$$) { $$$ }' scripts/ci/cache/__config.mjs
ast-grep --lang javascript --pattern 'const $_ = ($$$) => { $$$ }' scripts/ci/cache/__config.mjs
ast-grep --lang javascript --pattern 'import $_ from $$$' scripts/ci/cache/__config.mjs
ast-grep --lang javascript --pattern 'import { $$$ } from $$$' scripts/ci/cache/__config.mjs

Length of output: 1069



Script:

#!/bin/bash
# Description: Verify that functions used with `await` are asynchronous.

# Find definitions of functions used with `await` in the entire codebase.
rg 'function getYarnLockHash' --files-with-matches
rg 'function getPackageHash' --files-with-matches
rg 'function getGeneratedFilesHash' --files-with-matches
rg 'function runCommand' --files-with-matches

# Find imports of these functions in the entire codebase.
rg 'import { getYarnLockHash' --files-with-matches
rg 'import { getPackageHash' --files-with-matches
rg 'import { getGeneratedFilesHash' --files-with-matches
rg 'import { runCommand' --files-with-matches

Length of output: 1103



Script:

#!/bin/bash
# Description: Verify the asynchronous nature of functions used with `await`.

# Check definitions of functions in the identified files.
ast-grep --lang javascript --pattern 'async function getYarnLockHash($$$) { $$$ }' scripts/ci/get-node-modules-hash.mjs scripts/ci/cache/_utils.mjs
ast-grep --lang javascript --pattern 'async function getPackageHash($$$) { $$$ }' scripts/ci/get-node-modules-hash.mjs scripts/ci/cache/_utils.mjs
ast-grep --lang javascript --pattern 'async function getGeneratedFilesHash($$$) { $$$ }' scripts/ci/cache/_generated_files.mjs
ast-grep --lang javascript --pattern 'async function runCommand($$$) { $$$ }' scripts/ci/cache/_utils.mjs infra/src/common.ts

Length of output: 6785

scripts/ci/cache/_generated_files.mjs Outdated Show resolved Hide resolved
Copy link
Contributor

Affected services are: air-discount-scheme-api,air-discount-scheme-backend,api,application-system-api,download-service,financial-aid-api,financial-aid-backend,financial-aid-open-api,github-actions-cache,icelandic-names-registry-backend,judicial-system-api,judicial-system-digital-mailbox-api,judicial-system-backend,judicial-system-message-handler,judicial-system-robot-api,judicial-system-scheduler,judicial-system-xrd-api,license-api,reference-backend,regulations-admin-backend,services-auth-admin-api,services-auth-delegation-api,services-auth-ids-api,services-auth-personal-representative,services-auth-personal-representative-public,services-auth-public-api,services-contentful-entry-tagger,services-documents,services-endorsements-api,services-search-indexer,services-sessions,services-university-gateway,services-user-notification,services-user-profile,services-xroad-collector,skilavottord-ws,air-discount-scheme-web,auth-admin-web,consultation-portal,contentful-apps,financial-aid-web-osk,financial-aid-web-veita,judicial-system-web,skilavottord-web,web,application-system-form,island-ui-storybook,portals-admin,service-portal,system-e2e,external-contracts-tests,

@datadog-island-is
Copy link

datadog-island-is bot commented Jun 18, 2024

Datadog Report

All test runs 9eefb19 🔗

101 Total Test Services: 0 Failed, 99 Passed
🔻 Test Sessions change in coverage: 1 decreased (-0.03%), 2 increased, 192 no change

Test Services
This report shows up to 10 services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
air-discount-scheme-backend 0 0 0 81 0 33.6s N/A Link
air-discount-scheme-web 0 0 0 2 0 9.06s N/A Link
api 0 0 0 4 0 4.38s N/A Link
api-catalogue-services 0 0 0 23 0 16.88s N/A Link
api-domains-air-discount-scheme 0 0 0 6 0 38.74s N/A Link
api-domains-assets 0 0 0 3 0 25.73s N/A Link
api-domains-auth-admin 0 0 0 18 0 13.57s N/A Link
api-domains-communications 0 0 0 5 0 43.79s N/A Link
api-domains-criminal-record 0 0 0 5 0 17.38s N/A Link
api-domains-driving-license 0 0 0 23 0 51.09s N/A Link

🔻 Code Coverage Decreases vs Default Branch (1)

  • services-user-profile - jest 52.28% (-0.03%) - Details

Copy link

codecov bot commented Jun 18, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 37.10%. Comparing base (34c0031) to head (7bf7d5e).
Report is 2 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main   #15253   +/-   ##
=======================================
  Coverage   37.10%   37.10%           
=======================================
  Files        6448     6448           
  Lines      131455   131455           
  Branches    37574    37574           
=======================================
  Hits        48781    48781           
  Misses      82674    82674           
Flag Coverage Δ
air-discount-scheme-backend 53.66% <ø> (ø)
air-discount-scheme-web 0.00% <ø> (ø)
api 3.51% <ø> (ø)
api-catalogue-services 77.85% <ø> (ø)
api-domains-air-discount-scheme 35.96% <ø> (+0.06%) ⬆️
api-domains-assets 26.71% <ø> (ø)
api-domains-driving-license 44.25% <ø> (ø)
api-domains-mortgage-certificate 34.87% <ø> (+0.06%) ⬆️
application-system-api 41.96% <ø> (ø)
auth-nest-tools 30.44% <ø> (ø)
judicial-system-types 49.06% <ø> (ø)
nest-audit 68.20% <ø> (ø)
nest-config 77.40% <ø> (ø)
services-user-profile 62.19% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

see 6 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 89f9537...7bf7d5e. Read the comment docs.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Outside diff range and nitpick comments (3)
scripts/ci/cache/_utils.mjs (3)

Line range hint 32-32: Optimize the reduce operation to avoid performance issues.

- const value = keys.reduce((a, b) => {
-   return {
-     ...a,
-     [b]: content[b],
-   }
- }, {})
+ const value = {};
+ for (const key of keys) {
+   value[key] = content[key];
+ }

This change avoids the performance issue with using spread syntax in a reduce operation, which has a time complexity of O(n^2). The proposed loop has a linear time complexity.


Line range hint 8-17: Ensure robust error handling by checking for null content.

+ if (!content) {
+   throw new Error('package.json is not available or malformed');
+ }
  const nodeVersion = content?.engines?.node;
  const yarnVersion = content?.engines?.yarn;

Adding a null check for content before accessing properties will prevent potential runtime errors if the package.json file is missing or malformed.


Line range hint 160-192: Enhance error handling in runCommand to reject the promise with a meaningful error message.

- // reject(`Error: ${error.message}`)
+ reject(`Error: ${error.message}`)

Uncommenting the rejection line ensures that the promise returned by runCommand properly handles errors by rejecting with a meaningful error message.

Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2606219 and 7bf7d5e.

Files selected for processing (2)
  • scripts/ci/cache/_generated_files.mjs (1 hunks)
  • scripts/ci/cache/_utils.mjs (1 hunks)
Files skipped from review as they are similar to previous changes (1)
  • scripts/ci/cache/_generated_files.mjs
Additional context used
Path-based instructions (1)
scripts/ci/cache/_utils.mjs (1)

Pattern scripts/**/*: "Confirm that the code adheres to the following:

  • Script efficiency, readability, and maintainability.
  • Usage of environmental variables and configuration files for flexibility.
  • Integration with NX workspace utilities and commands."
Biome
scripts/ci/cache/_utils.mjs

[error] 32-32: Avoid the use of spread (...) syntax on accumulators. (lint/performance/noAccumulatingSpread)

Spread syntax should be avoided on accumulators (like those in .reduce) because it causes a time complexity of O(n^2).
Consider methods such as .splice or .push instead.

Additional comments not posted (1)
scripts/ci/cache/_utils.mjs (1)

Line range hint 19-20: The implementation of getPlatformString is straightforward and correct.

Copy link
Member

@AndesKrrrrrrrrrrr AndesKrrrrrrrrrrr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀 🙌

@lodmfjord lodmfjord added the automerge Merge this PR as soon as all checks pass label Jun 18, 2024
@kodiakhq kodiakhq bot merged commit 69343fe into main Jun 18, 2024
487 of 498 checks passed
@kodiakhq kodiakhq bot deleted the generatd-files-hash branch June 18, 2024 11:54
lodmfjord added a commit that referenced this pull request Jun 18, 2024
* fix: hash generated files

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>
kodiakhq bot added a commit that referenced this pull request Jun 18, 2024
…15239)

* Fix locale updates. Add cleanstring

* update string clean

* Update packagejson

* Update query

* Update query

* Add lang option

* Test

* Fix

* Add locale

* Test name update

* fix: force generated files

* chore: nx format:write update dirty files

* Revert test

* Remove ff

* fix: hash generated files

* fix(j-s): Null Service Reference (#15247)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(native-app): Notifications final improvements (#15240)

* feat: buttons at top should not be sticky

* feat: add empty state for notifications

* fix: make sure to update unreadCount in inbox when fetching next page

* feat: add fallback icon for notifications

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(consultation-portal): KAM-2522: PowerBI report added (#15251)

* fix: hash generated files (#15253)

* fix: hash generated files

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>

* fix: remove file

* Update __config.mjs

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: lommi <jonorn@gmail.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Guðjón Guðjónsson <gudjon@kolibri.is>
Co-authored-by: Þórey Jóna <thoreyjona@gmail.com>
Co-authored-by: Karl Arnar Ægisson <korsbacka@gmail.com>
thordurhhh added a commit that referenced this pull request Jun 18, 2024
…15239)

* Fix locale updates. Add cleanstring

* update string clean

* Update packagejson

* Update query

* Update query

* Add lang option

* Test

* Fix

* Add locale

* Test name update

* fix: force generated files

* chore: nx format:write update dirty files

* Revert test

* Remove ff

* fix: hash generated files

* fix(j-s): Null Service Reference (#15247)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(native-app): Notifications final improvements (#15240)

* feat: buttons at top should not be sticky

* feat: add empty state for notifications

* fix: make sure to update unreadCount in inbox when fetching next page

* feat: add fallback icon for notifications

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(consultation-portal): KAM-2522: PowerBI report added (#15251)

* fix: hash generated files (#15253)

* fix: hash generated files

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>

* fix: remove file

* Update __config.mjs

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: lommi <jonorn@gmail.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Guðjón Guðjónsson <gudjon@kolibri.is>
Co-authored-by: Þórey Jóna <thoreyjona@gmail.com>
Co-authored-by: Karl Arnar Ægisson <korsbacka@gmail.com>
kodiakhq bot added a commit that referenced this pull request Jun 18, 2024
…15255)

* fix(documents-v2): Add download URL to detail document v2 (#15194)

* fix(service-portal): Update notification icon styling (#15219)

* Update notification icon styling

* Add option to remove button docline

* fix(service-portal): Notifications - locale updates. Add cleanstring (#15239)

* Fix locale updates. Add cleanstring

* update string clean

* Update packagejson

* Update query

* Update query

* Add lang option

* Test

* Fix

* Add locale

* Test name update

* fix: force generated files

* chore: nx format:write update dirty files

* Revert test

* Remove ff

* fix: hash generated files

* fix(j-s): Null Service Reference (#15247)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(native-app): Notifications final improvements (#15240)

* feat: buttons at top should not be sticky

* feat: add empty state for notifications

* fix: make sure to update unreadCount in inbox when fetching next page

* feat: add fallback icon for notifications

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>

* feat(consultation-portal): KAM-2522: PowerBI report added (#15251)

* fix: hash generated files (#15253)

* fix: hash generated files

* chore: nx format:write update dirty files

---------

Co-authored-by: andes-it <builders@andes.is>

* fix: remove file

* Update __config.mjs

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: lommi <jonorn@gmail.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Guðjón Guðjónsson <gudjon@kolibri.is>
Co-authored-by: Þórey Jóna <thoreyjona@gmail.com>
Co-authored-by: Karl Arnar Ægisson <korsbacka@gmail.com>

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
Co-authored-by: lommi <jonorn@gmail.com>
Co-authored-by: andes-it <builders@andes.is>
Co-authored-by: Guðjón Guðjónsson <gudjon@kolibri.is>
Co-authored-by: Þórey Jóna <thoreyjona@gmail.com>
Co-authored-by: Karl Arnar Ægisson <korsbacka@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge this PR as soon as all checks pass deploy-feature Deploys features to dev test everything 💀 test & build everything 💀
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants