Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
denkristoffer committed Apr 3, 2024
1 parent 809f105 commit 7766cca
Show file tree
Hide file tree
Showing 239 changed files with 30,319 additions and 47,879 deletions.
74 changes: 74 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,80 @@
"contributions": [
"doc"
]
},
{
"login": "cf-remylenoir",
"name": "Rémy Lenoir",
"avatar_url": "https://avatars.githubusercontent.com/u/103024358?v=4",
"profile": "https://github.com/cf-remylenoir",
"contributions": [
"maintenance",
"code",
"doc"
]
},
{
"login": "wojtekmaj",
"name": "Wojciech Maj",
"avatar_url": "https://avatars.githubusercontent.com/u/5426427?v=4",
"profile": "https://wojtekmaj.pl",
"contributions": [
"bug",
"code"
]
},
{
"login": "lilbitner",
"name": "Lillian Bitner ",
"avatar_url": "https://avatars.githubusercontent.com/u/58186851?v=4",
"profile": "https://github.com/lilbitner",
"contributions": [
"maintenance",
"code",
"doc"
]
},
{
"login": "whitelisab",
"name": "Lisa White",
"avatar_url": "https://avatars.githubusercontent.com/u/62958907?v=4",
"profile": "http://whitelisab.com",
"contributions": [
"maintenance",
"code",
"doc"
]
},
{
"login": "roosterhack",
"name": "Eddie Chung",
"avatar_url": "https://avatars.githubusercontent.com/u/47013507?v=4",
"profile": "https://github.com/roosterhack",
"contributions": [
"maintenance",
"code",
"doc"
]
},
{
"login": "Cyberxon",
"name": "Marouen Ben Salem",
"avatar_url": "https://avatars.githubusercontent.com/u/26111745?v=4",
"profile": "https://github.com/Cyberxon",
"contributions": [
"code",
"doc",
"bug"
]
},
{
"login": "2wce",
"name": "Kudakwashe Mupeni",
"avatar_url": "https://avatars.githubusercontent.com/u/5754661?v=4",
"profile": "https://kudamupeni.vercel.app",
"contributions": [
"code"
]
}
],
"contributorsPerLine": 7,
Expand Down
2 changes: 1 addition & 1 deletion .changelogrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{"**F36 Tokens** `v4.0.5`":["- update default warning variant color\n"]}
16 changes: 14 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
working_directory: ~/circleci-f36-build
steps:
- checkout
- vault/get-secrets:
template-preset: packages-read
- run: |
echo "//npm.pkg.github.com/:_authToken=${GITHUB_PACKAGES_READ_TOKEN}" > ~/.npmrc
echo "@contentful:registry=https://npm.pkg.github.com" >> ~/.npmrc
- attach_workspace:
at: ~/circleci-f36-build
- node/install-packages
Expand Down Expand Up @@ -112,7 +117,9 @@ jobs:
- checkout
- vault/get-secrets:
template-preset: semantic-release
- run: echo '//registry.npmjs.org/:_authToken=${NPM_TOKEN}' > ~/.npmrc
- run: |
echo "//npm.pkg.github.com/:_authToken=${GITHUB_PACKAGES_WRITE_TOKEN}" > ~/.npmrc
echo "@contentful:registry=https://npm.pkg.github.com" >> ~/.npmrc
- attach_workspace:
at: ~/circleci-f36-build
- add_ssh_keys:
Expand Down Expand Up @@ -141,6 +148,9 @@ jobs:
- checkout
- vault/get-secrets:
template-preset: semantic-release
- run: |
echo "//npm.pkg.github.com/:_authToken=${GITHUB_PACKAGES_WRITE_TOKEN}" > ~/.npmrc
echo "@contentful:registry=https://npm.pkg.github.com" >> ~/.npmrc
- attach_workspace:
at: ~/circleci-f36-build
- add_ssh_keys:
Expand All @@ -162,7 +172,9 @@ workflows:
version: 2
f36-build:
jobs:
- build
- build:
context:
- vault
- analyze_code:
requires:
- build
Expand Down
1 change: 1 addition & 0 deletions .contentful/vault-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ services:
circleci:
policies:
- semantic-release
- packages-read
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* @contentful/team-core-experience @Lelith
* @contentful/team-core-experience @Lelith @cf-remylenoir @damann
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
version: 2

registries:
npm-npmjs:
type: npm-registry
url: https://registry.npmjs.org
token: '${{secrets.NPM_REGISTRY_REGISTRY_NPMJS_ORG_TOKEN}}'
npm-github:
type: npm-registry
url: https://npm.pkg.github.com
token: ${{secrets.NPM_REGISTRY_REGISTRY_GH_ORG_TOKEN}}

updates:
- package-ecosystem: npm
directory: '/'
Expand All @@ -11,4 +21,7 @@ updates:
- dependencies
commit-message:
prefix: chore
registries:
- npm-npmjs
- npm-github
versioning-strategy: widen
8 changes: 6 additions & 2 deletions .github/workflows/size-limit.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'size'

on:
pull_request:
on:
pull_request:
branches:
- main

Expand All @@ -12,6 +12,10 @@ jobs:
CI_JOB_NUMBER: 1
steps:
- uses: actions/checkout@v2
- name: Authenticate with Github packages
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > .npmrc
echo "@contentful:registry=https://npm.pkg.github.com" >> .npmrc
- uses: andresz1/size-limit-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 7766cca

Please sign in to comment.